416 Journal of Software 4(3) 2003,1. Java, Java, Java : ; ; ;Java : TP311 : A (binding time analysis ), (partial evaluation)., [1~3]., C Java, Java.,.

Size: px
Start display at page:

Download "416 Journal of Software 4(3) 2003,1. Java, Java, Java : ; ; ;Java : TP311 : A (binding time analysis ), (partial evaluation)., [1~3]., C Java, Java.,."

Transcription

1 /2003/14(03) Journal of Software Vol.14, No.3 +,, (, ) A Technology of Binding Time Analysis for Object-Oriented Programming Languages LIAO Hu-Sheng +, TONG Zhao-Feng, WANG Zhong (College of Computer Science, Beijing Polytechnic University, Beijing , China) + Corresponding author: Phn: ; , Fax: , liaohs@bjpu.edu.cn Received ; Accepted Liao HS, Tong ZF, Wang Z. A technology of binding time analysis for object-oriented programming languages. Journal of Software, 2003,14(3):415~421. Abstract: A technology of binding time analysis for implementing partial evaluation of object-oriented programming languages is proposed in this paper. By tracing context-sensitivity of reference variables and pointer variables, the new approach can deal with elements of partly static data structure, such as attributes of each object and elements of each array. The new approach uses a two-level environment to hold states for static variables and local variables. The objects created at different program points are represented by a kind of specific handle. The state of a reference variable is represented by a set of such handles. The algorithm of a forward analysis and backward analysis are presented. They are used to annotate source program, with environment to trace binding time of various kind of variables including identifier of array, object and reference. The binding time analysis has been implemented for Java. It is able to analyse most single thread Java programs and support partial evaluation for Java with higher performance. Key words: binding time analysis; partial evaluation; object-oriented programming language; Java language :,.,,.,,., Supported by the National Natural Science Foundation of China under Grant No ( ) ; the Natural Science Foundation of Beijing City of China under Grant No ( ); the Assisting Project of Ministry of Education of China for Backbone Teachers of University and College (. : (1954 ),,,,, 转载

2 416 Journal of Software 4(3) 2003,1. Java, Java, Java : ; ; ;Java : TP311 : A (binding time analysis ), (partial evaluation)., [1~3]., C Java, Java.,., (context sensitivity),,. Java, Java. 1,,, ( ), ( ) (residual program)., 1 x,y,, Table 1 Case on binding time analysis 1 void fun (int x, int y) void fun (int x S,int y D ) MyObj o; MyObj o SD ; o=new MyObj( ); o SD = SD new SD MyObj( ); o.a=x; o.a SD = SD x S ; while (x>10) while S (x S > S 10 S ) o.a=o.a+x; o.a D = D o.a D + D x S ; o.a=o.a*y; o.a D = D o.a D * D y D ; x=x 2; x S = S x S S 2 S ; S, D, SD.,,,,., a 4~6, SD,S D.,. C,,,,.,.. 2,,: [4,5]

3 : 417 (1),.. ;. (2),,,.,,. (3) ( ),.,.,,.,, : (1), ;,,. ( ),. (2), ( ) ( ) ;. (3). 1,,.,,. (4) 2.,,,., 2. 1,, ; 2,, 1 o 4, 4. 2, SD Table 2 Results of two parse phases in binding time analysis 2 void fun (int x S,int y D ) MyObj o; o 4 = 4 new MyObj( ); o.a= S x S ; while S (x S > S 3 S ) o.a= D o.a D + D x S ; o.a= D o.a D * D y D ; x= S x S S 2 S ; void fun (int x S,int y D ) MyObj o SD ; o SD = SD new SD MyObj( ); o.a SD = SD x S ; while S (x S > S 10 S ) o.a D = D o.a D + D x S ; o.a D = D o.a D * D y D ; x S = S x S S 2 S ;. 1,,,S D D;,.,,.

4 418 Journal of Software 4(3) 2003,1 2,., SD.,, SD;,,. 3 3 Java,. 4, ( 1 ) ( 2 ). 4 ; v,,. State : Bta. Java, Table 3 Subset of Java language 3 Java Syntax domain: stmt Stmt statement expr Expr expression Id Iden identifier const Const constant Abstract syntax: stmt Id=expr; stmt Id 1=New Id 2[expr]; array (including object array) stmt Id 1=New Id 2(expr 1,,expr n); object construction stmt Id 1.Id 2=expr; object s member stmt Id[expr 1]=expr 2; stmt Id(expr 1,,expr n); method invocation for this class stmt Id 1.Id 2(expr 1,,expr n); method invocation stmt If (expr) stmt 1 Else stmt 2 condition statement stmt While (expr) stmt loop statement stmt stmt 1 stmt n compound statement stmt Type Id; declaration statement expr const constant expr Id expr Id 1.Id 2 object s member expr Id [expr] element of array expr UnOp expr unary operation (including cast) expr expr 1 BinOp expr 2 binary operation expr (expr), ;.,.,,,.,.,,. 5 1.,,.

5 : 419 Table 4 Annotation for an expression in binding time analysis 4 Representation for value: State=Bta+Iden * state bt Bta annotation bt::=s D SD Key Iden+Iden.Iden+Iden[Expr] v Env=Key State environment evaluation rules for expression: EB [Expr] Env Bta EB [const] v =S EB [Id] v =v [Id] variable EB [Id 1.Id 2] v =v [Id 1.Id 2] object s member EB [Id [expr]] v =v [Id[expr]] element of array EB [UnOp expr] v =EB [expr] v EB [expr 1 BinOp expr 2] v =EB [expr 1] v EB[expr 2] v EB [(expr)] v =EB [expr] v Comment: Initialization: The initial value of v is a two -level environment for the current method Function: bt 1 bt 2 evaluation of the least-upper boundary of the two states Table 5 Forward analysis algorithm for a statement in binding time analysis 5 Representation of value: in Env Premise environment for analyzing the current statement out Env Post environment for analyzing the current statement Forward analysis rules for statement: SFB [Stmt] Env Env SFB [Id=expr;] in=in++ id bt where bt=eb[expr]in SFB [Id 1=New Id 2 [expr];] in=in++ id 1 bt where bt=in[new.where] SFB [Id 1=New Id 2 (e 1,,e n);] in out.getoutenv(id 2,Id 2) where out=in++ id 1 in[new.where] SFB [Id 1.Id 2=expr;] in in++ Id 1.Id 2 bt where bt=eb [expr] in SFB [Id [expr 1]=expr 2;] in in++ Id[expr] bt where bt=eb[expr 1] in EB [expr 2] in SFB [Id(e 1,,e n);] in in.getoutenv(this,id) SFB [Id 1.Id 2(e 1,,e n);] in in.getoutenv(id 1,Id 2) SFB [If (expr) stmt 1 Else stmt 2] in if bt==s then out else out.setdyn(stmt 1, stmt 2) where bt=eb [expr] in out=sfb[stmt 1] in SFB[stmt 2] in SFB [While (expr) stmt] in if bt==s then out n else out n setdyn(stmt) where bt=eb[expr] out n; in 1=in out i=sfb [stmt] in i for i=1,,n and in n=out n SFB [s 1 s n] in=out n where out i=sfb [s i] out i 1 for i=1,,n out 0=in SFB [Type Id;] in in++ Id null Comment Initialization: the initial value of in is a two-level environment for the current method with each parameter s state, which is set in analysis for method. Auxiliary function: in++ id bt to update environment by assigning id s state with bt. env.getoutenv(class,method) to get the post environment for the method class.method.env.setdyn (stmt) to assign dynamic states of the variables those are assigned in the statement stmt.bt 1 bt 2 evaluation of the least-upper boundary of the two states.in 1 in 2 union of the two states. Attribute: New.where to representation the position of the statement in program s text.

6 420 Journal of Software 4(3) 2003,1,, ;,,,.,.,.,.,,.,.,,., 1 7 o.a, 8,,.,,, ;,..,., :(1) ;(2). n, m k., 3.,,, O(n+m*k).,.,,.. 4 Java Java. Java. 1, Java Java 3.,,,.,,., Java. Program transformation Java source Java subset source for methods Requirement for PE Forward analysis PE pattern for methods Java program with state Backward analysis Java program with annotation Fig.1 Binding time analysis system for Java 1 Java

7 : 421 5,,,, References: [1] Anderson LO. Program analysis and specialization for the C programming language [Ph.D. Thesis]. Copenhagen: Department of Computer Science, University of Copenhagen, [2] Consel C, Noel F. A general approach for run-time specialization and its application to C. In: Proceedings of the Conference Record of the 23rd Annual ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages. St. Petersburg Beach, FL: ACM Press, ~156. [3] Grant B, Mock M, Philipose M, Chambers C, Eggers SJ. Annotation-Directed run-time specialization in C. In: ACM SIGPLAN Symposium on Partial Evaluation and Semantice-Based Program Manipulation. Amsterdam: ACM Press, ~178. [4] Hornof L, Noye J, Consel C. Effective specialization of realistic programs via use sensitivity. Lecture Notes in Computer Science, 1997,1302:293~314. [5] Hornof L, Noye J. Accurate binding time analysis for imperative languages: flow, context and return sensitivity. In: ACM SIGPLAN Symposium on Partial Evaluation and Semantics-Based Program Manipulation (PEPM 97). Amsterdam: ACM Press, ~ ChinaCrypt ~ 7 EI Word/PDF Tel: Tel: lixiang@gzu.edu.cn kfchen@mail.sjtu.edu.cn

中文模板

中文模板 1000-9825/2003/14(03)0415 2003 Journal of Software 软 件 学 报 Vol.14, No.3 面 向 对 象 程 序 设 计 语 言 的 绑 定 时 间 分 析 技 术 廖 湖 声 +, 童 兆 丰, 王 众 ( 北 京 工 业 大 学 计 算 机 学 院, 北 京 100022) A Technology of Binding Time Analysis

More information

中文模板

中文模板 1000-9825/2003/14(03)0415 2003 Journal of Software 软件学报 Vol.14, No.3 面向对象程序设计语言的绑定时间分析技术 廖湖声 +, 童兆丰, 王众 ( 北京工业大学计算机学院, 北京 100022) A Technology of Binding Time Analysis for Object-Oriented Programming Languages

More information

2/80 2

2/80 2 2/80 2 3/80 3 DSP2400 is a high performance Digital Signal Processor (DSP) designed and developed by author s laboratory. It is designed for multimedia and wireless application. To develop application

More information

SVM OA 1 SVM MLP Tab 1 1 Drug feature data quantization table

SVM OA 1 SVM MLP Tab 1 1 Drug feature data quantization table 38 2 2010 4 Journal of Fuzhou University Natural Science Vol 38 No 2 Apr 2010 1000-2243 2010 02-0213 - 06 MLP SVM 1 1 2 1 350108 2 350108 MIP SVM OA MLP - SVM TP391 72 A Research of dialectical classification

More information

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y

~ 10 2 P Y i t = my i t W Y i t 1000 PY i t Y t i W Y i t t i m Y i t t i 15 ~ 49 1 Y Y Y 15 ~ j j t j t = j P i t i = 15 P n i t n Y * 35 4 2011 7 Vol. 35 No. 4 July 2011 3 Population Research 1950 ~ 1981 The Estimation Method and Its Application of Cohort Age - specific Fertility Rates Wang Gongzhou Hu Yaoling Abstract Based on the

More information

% GIS / / Fig. 1 Characteristics of flood disaster variation in suburbs of Shang

% GIS / / Fig. 1 Characteristics of flood disaster variation in suburbs of Shang 20 6 2011 12 JOURNAL OF NATURAL DISASTERS Vol. 20 No. 6 Dec. 2011 1004-4574 2011 06-0094 - 05 200062 1949-1990 1949 1977 0. 8 0. 03345 0. 01243 30 100 P426. 616 A Risk analysis of flood disaster in Shanghai

More information

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes

Shanghai International Studies University THE STUDY AND PRACTICE OF SITUATIONAL LANGUAGE TEACHING OF ADVERB AT BEGINNING AND INTERMEDIATE LEVEL A Thes 上 海 外 国 语 大 学 硕 士 学 位 论 文 对 外 汉 语 初 中 级 副 词 情 境 教 学 研 究 与 实 践 院 系 : 国 际 文 化 交 流 学 院 学 科 专 业 : 汉 语 国 际 教 育 姓 名 : 顾 妍 指 导 教 师 : 缪 俊 2016 年 5 月 Shanghai International Studies University THE STUDY AND PRACTICE

More information

Microsoft Word - 793-797 tb20150504赵宏宇s-高校教改纵横.doc

Microsoft Word - 793-797 tb20150504赵宏宇s-高校教改纵横.doc 微 生 物 学 通 报 Microbiology China tongbao@im.ac.cn Apr. 20, 2016, 43(4): 793 797 http://journals.im.ac.cn/wswxtbcn DOI: 10.13344/j.microbiol.china.150504 高 校 教 改 纵 横 生 物 工 程 专 业 发 酵 课 程 群 建 设 探 索 * 赵 宏 宇

More information

,,, () 20 80,,,,, ;,, ;,, ;,,,,,,,,, [1 ], :,,,,2 2,,, () (),,,,:,,,,:,,,, :, [2 ] :,,,,,,, : AN NA,,,,,, ( ),:,,: ( F) = (A1 + A2 + A3 + An -

,,, () 20 80,,,,, ;,, ;,, ;,,,,,,,,, [1 ], :,,,,2 2,,, () (),,,,:,,,,:,,,, :, [2 ] :,,,,,,, : AN NA,,,,,, ( ),:,,: ( F) = (A1 + A2 + A3 + An - 23 5 2009 9 J OU RNAL OF CH IN ESE IN FORMA TION PROCESSIN G Vol. 23, No. 5 Sep., 2009 : 100320077 (2009) 0520009210, (,) :,, ;,,,, ;,, : ;; ;;; : TP391 : A A Semantic Construction Model bet ween Adjectives

More information

6 ( ) 2008, ;,,,,,,,,,,,, :,,,,, ( ),,,,,,, ;,,,,,,,, ; ( ),, :,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, :,,, : 1997 :, : 2006, 132 : 1 ( ), : 1975, 649, 42,

6 ( ) 2008, ;,,,,,,,,,,,, :,,,,, ( ),,,,,,, ;,,,,,,,, ; ( ),, :,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, :,,, : 1997 :, : 2006, 132 : 1 ( ), : 1975, 649, 42, 45 3 2008 5 ( ) Journal of Peking University( Philo sophy and Social Science s) Vol. 45, No. 3 May 2008 ( ) :,,, ;,,,,, : ; ; ; : G640 :A :100025919 (2008) 0320005211 :,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

More information

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of

University of Science and Technology of China A dissertation for master s degree Research of e-learning style for public servants under the context of 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 新 媒 体 环 境 下 公 务 员 在 线 培 训 模 式 研 究 作 者 姓 名 : 学 科 专 业 : 导 师 姓 名 : 完 成 时 间 : 潘 琳 数 字 媒 体 周 荣 庭 教 授 二 一 二 年 五 月 University of Science and Technology of China A dissertation for

More information

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc

Fun Time (1) What happens in memory? 1 i n t i ; 2 s h o r t j ; 3 double k ; 4 char c = a ; 5 i = 3; j = 2; 6 k = i j ; H.-T. Lin (NTU CSIE) Referenc References (Section 5.2) Hsuan-Tien Lin Deptartment of CSIE, NTU OOP Class, March 15-16, 2010 H.-T. Lin (NTU CSIE) References OOP 03/15-16/2010 0 / 22 Fun Time (1) What happens in memory? 1 i n t i ; 2

More information

小论文草稿2_邓瀚

小论文草稿2_邓瀚 城 市 轨 道 交 通 列 车 运 行 控 制 系 统 仿 真 分 析 平 台 的 设 计 邓 瀚 1 赵 霞 1 张 琼 燕 2 刘 循 2 (1. 上 海 交 通 大 学 自 动 化 系, 系 统 控 制 与 信 息 处 理 教 育 部 重 点 实 验 室, 上 海,200240;2. 上 海 申 通 地 铁 股 份 有 限 公 司, 上 海,201103) 摘 要 文 章 设 计 了 一 种

More information

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :,

2 3. 1,,,.,., CAD,,,. : 1) :, 1,,. ; 2) :,, ; 3) :,; 4) : Fig. 1 Flowchart of generation and application of 3D2digital2building 2 :.. 3 : 1) :, 3 1 Vol. 3. 1 2008 2 CAA I Transactions on Intelligent Systems Feb. 2008, (,210093) :.,; 3., 3. :; ; ; ; : TP391 :A :167324785 (2008) 0120001208 A system f or automatic generation of 3D building models

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 2016 年 第 25 卷 第 期 http://www.c-s-a.org.cn 计 算 机 系 统 应 用 1 基 于 节 点 融 合 分 层 法 的 电 网 并 行 拓 扑 分 析 王 惠 中 1,2, 赵 燕 魏 1,2, 詹 克 非 1, 朱 宏 毅 1 ( 兰 州 理 工 大 学 电 气 工 程 与 信 息 工 程 学 院, 兰 州 730050) 2 ( 甘 肃 省 工 业 过 程 先

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074> 软 件 架 构 师 研 修 讲 座 胡 协 刚 软 件 架 构 师 UML/RUP 专 家 szjinco@public.szptt.net.cn 中 国 软 件 架 构 师 网 东 软 培 训 中 心 小 故 事 : 七 人 分 粥 当 前 软 件 团 队 的 开 发 现 状 和 面 临 的 问 题 软 件 项 目 的 特 点 解 决 之 道 : 从 瀑 布 模 型 到 迭 代 模 型 解 决 项

More information

EJB-Programming-4-cn.doc

EJB-Programming-4-cn.doc EJB (4) : (Entity Bean Value Object ) JBuilder EJB 2.x CMP EJB Relationships JBuilder EJB Test Client EJB EJB Seminar CMP Entity Beans Session Bean J2EE Session Façade Design Pattern Session Bean Session

More information

物理学报 Acta Phys. Sin. Vol. 62, No. 14 (2013) 147802 叠 [4]. PET 设备最重要的部件就是探测器环, 探测 备重建图像具有减少数据插值的优势. 器环的性能直接影响 PET 的成像能力. 探头与探头 之间得到的符合直线叫做投影线. 所有的投影线在

物理学报 Acta Phys. Sin. Vol. 62, No. 14 (2013) 147802 叠 [4]. PET 设备最重要的部件就是探测器环, 探测 备重建图像具有减少数据插值的优势. 器环的性能直接影响 PET 的成像能力. 探头与探头 之间得到的符合直线叫做投影线. 所有的投影线在 数 据 插 值 对 正 电 子 发 射 断 层 成 像 设 备 的 图 像 重 建 影 响 的 研 究 * 杨 昆 刘 新 新 李 晓 苇 ( 河 北 大 学 物 理 学 院, 保 定 071000 ) ( 2013 年 1 月 30 日 收 到 ; 2013 年 4 月 9 日 收 到 修 改 稿 ) 正 电 子 发 射 断 层 扫 描 (positron emission computed tomography,

More information

IT 36% Computer Science Teachers Association, CSTA K K-12 CSTA K-12 K-12 K-6 K6-9 K STEM STEM STEM

IT 36% Computer Science Teachers Association, CSTA K K-12 CSTA K-12 K-12 K-6 K6-9 K STEM STEM STEM 2017 4 357 GLOBAL EDUCATION Vol. 46 No4, 2017 K-12 2016 K-12 K-12 / 200062 / 200062 2015 8 2015 STEM STEM 1 Computer Science Association for Computing Machinery ACM Code Computer Science Teachers Association

More information

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f

27 :OPC 45 [4] (Automation Interface Standard), (Costom Interface Standard), OPC 2,,, VB Delphi OPC, OPC C++, OPC OPC OPC, [1] 1 OPC 1.1 OPC OPC(OLE f 27 1 Vol.27 No.1 CEMENTED CARBIDE 2010 2 Feb.2010!"!!!!"!!!!"!" doi:10.3969/j.issn.1003-7292.2010.01.011 OPC 1 1 2 1 (1., 412008; 2., 518052), OPC, WinCC VB,,, OPC ; ;VB ;WinCC Application of OPC Technology

More information

标题

标题 2016 年 5 月 西 南 民 族 大 学 学 报 ( 自 然 科 学 版 ) 第 423 卷 期 第 3 期 Journal 谢 of 琪 Southwest ꎬ 等 :C++ University 程 序 设 计 for 实 Nationalities( 验 教 学 微 课 Natural 的 设 计 Science 与 实 现 Edition) May 2016 Vol 42 No 3 doi:10

More information

1.2 资 金 的 管 理 1.1 权 利 义 务 来 源 MOU 1.3 数 据 的 使 用 和 保 护 2 国 际 空 间 站 资 源 分 配 方 案 54

1.2 资 金 的 管 理 1.1 权 利 义 务 来 源 MOU 1.3 数 据 的 使 用 和 保 护 2 国 际 空 间 站 资 源 分 配 方 案 54 第 29 卷 第 12 期 全 球 科 技 经 济 瞭 望 Vol. 29 No. 12 2014 年 12 月 Global Science, Technology and Economy Outlook Dec. 2014 刘 阳 子 ( 中 国 科 学 技 术 信 息 研 究 所, 北 京 ) 摘 要 : 空 间 探 索 既 复 杂 艰 巨 又 耗 资 甚 大, 因 此, 世 界 各 国 无

More information

% % % % % % ~

% % % % % % ~ 1001-5558 2015 03-0021-16 2010 C91 A 2014 5 2010 N. W. Journal of Ethnology 2015 3 86 2015.No.3 Total No.86 2010 2010 2181.58 882.99 40.47% 1298.59 59.53% 2013 2232.78 847.29 37.95% 1385.49 62.05% 1990

More information

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流

2 ( 自 然 科 学 版 ) 第 20 卷 波 ). 这 种 压 缩 波 空 气 必 然 有 一 部 分 要 绕 流 到 车 身 两 端 的 环 状 空 间 中, 形 成 与 列 车 运 行 方 向 相 反 的 空 气 流 动. 在 列 车 尾 部, 会 产 生 低 于 大 气 压 的 空 气 流 第 20 卷 第 3 期 2014 年 6 月 ( 自 然 科 学 版 ) JOURNAL OF SHANGHAI UNIVERSITY (NATURAL SCIENCE) Vol. 20 No. 3 June 2014 DOI: 10.3969/j.issn.1007-2861.2013.07.031 基 于 FLUENT 测 轨 道 交 通 隧 道 中 电 波 折 射 率 结 构 常 数 张 永

More information

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2

θ 1 = φ n -n 2 2 n AR n φ i = 0 1 = a t - θ θ m a t-m 3 3 m MA m 1. 2 ρ k = R k /R 0 5 Akaike ρ k 1 AIC = n ln δ 2 35 2 2012 2 GEOMATICS & SPATIAL INFORMATION TECHNOLOGY Vol. 35 No. 2 Feb. 2012 1 2 3 4 1. 450008 2. 450005 3. 450008 4. 572000 20 J 101 20 ARMA TU196 B 1672-5867 2012 02-0213 - 04 Application of Time Series

More information

9, : Java 19., [4 ]. 3 Apla2Java Apla PAR,Apla2Java Apla Java.,Apla,,, 1. 1 Apla Apla A[J ] Get elem (set A) A J A B Intersection(set A,set B) A B A B

9, : Java 19., [4 ]. 3 Apla2Java Apla PAR,Apla2Java Apla Java.,Apla,,, 1. 1 Apla Apla A[J ] Get elem (set A) A J A B Intersection(set A,set B) A B A B 25 9 2008 9 M ICROEL ECTRON ICS & COMPU TER Vol. 25 No. 9 September 2008 J ava 1,2, 1,2, 1,2 (1, 330022 ; 2, 330022) :,. Apla - Java,,.. : PAR ;Apla - Java ; ;CMP ; : TP311 : A : 1000-7180 (2008) 09-0018

More information

/ / / 咏 1995/

/ / / 咏 1995/ A Research of Teaching Chinese Literature in Management Business Department of the tow-year Program e x e x Janus Fang, Dept. Of General Education Center, Far East College ABSTRACT This paper is devoted

More information

4 : 85 :, (2) :, gλ (, ), ( gλψ, gλζ ) :,,, 112,?,, :, :,,, (conceptual domain), (conceptual components) (hierarchical structure),, : (,[ ], ) 1,,,, (

4 : 85 :, (2) :, gλ (, ), ( gλψ, gλζ ) :,,, 112,?,, :, :,,, (conceptual domain), (conceptual components) (hierarchical structure),, : (,[ ], ) 1,,,, ( 43 4 2006 7 ( ) Journal of Peking University( Philo sophy and Social Science s) Vol. 43, No. 4 Jul. 2006 (, 100871) :,,,,, : ; ; ; ; :H13 :A :100025919 (2006) 0420084222,,??,,, 111,,??,?,,, :, :, : :,

More information

EJB-Programming-3.PDF

EJB-Programming-3.PDF :, JBuilder EJB 2.x CMP EJB Relationships JBuilder EJB Test Client EJB EJB Seminar CMP Entity Beans Value Object Design Pattern J2EE Design Patterns Value Object Value Object Factory J2EE EJB Test Client

More information

穨423.PDF

穨423.PDF Chinese Journal of Science Education 2002,, 423-439 2002, 10(4), 423-439 1 2 1 1 1 2 90 8 10 91 4 9 91 8 22 ) NII 1995 7 14, 1999 1997 (Cooperative Remotely Accessible Learning CORAL) 424 (Collaborative

More information

标题

标题 第 15 卷第 5 期 2014 年 10 月 南华大学学报( 社会科学版) Journal of University of South China( Social Science Edition) Vol. 15 No. 5 Oct. 2014 延安时期毛泽东对党内民主的探索及其现实启示 石摇 学摇 峰 ( 中共天津市委党校 中共党史教研部,天津 300191) [ 摘摇 要] 摇 党内民主是党的生命

More information

<4D6963726F736F667420576F7264202D203631372D3632312032303133303430333030312DBACEC0F25FD0A3B6D4B8E55F2DB6FED0A32D2D2DC8A5B5F4CDBCD6D0B5C4BBD8B3B5B7FBBAC52E646F63>

<4D6963726F736F667420576F7264202D203631372D3632312032303133303430333030312DBACEC0F25FD0A3B6D4B8E55F2DB6FED0A32D2D2DC8A5B5F4CDBCD6D0B5C4BBD8B3B5B7FBBAC52E646F63> 第 4 卷 第 2 期 食 品 安 全 质 量 检 测 学 报 Vol. 4 No. 2 2013 年 4 月 Journal of Food Safety and Quality Apr., 2013 何 莉 *, 姜 笑 寒 ( 广 东 省 食 品 药 品 职 业 技 术 学 校, 广 州 510663) 摘 要 : 本 文 通 过 科 学 地 运 用 html5+jsp+sql 技 术, 建

More information

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc

Value Chain ~ (E-Business RD / Pre-Sales / Consultant) APS, Advanc Key @ Value Chain fanchihmin@yahoo.com.tw 1 Key@ValueChain 1994.6 1996.6 2000.6 2000.10 ~ 2004.10 (E- RD / Pre-Sales / Consultant) APS, Advanced Planning & Scheduling CDP, Collaborative Demand Planning

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 EAI EAI Middleware EAI 3.1 EAI EAI Client/Server Internet,www,Jav a 3.1 EAI Message Brokers -Data Transformation Business Rule XML XML 37 3.1 XML XML XML EAI XML 1. XML XML Java Script VB Script Active

More information

从调查统计( 表 1) 可以看出 工科学生英语学习关注目标在不同阶段存在较大差异 外在目标主要关注就业和专业发 展 尤其毕业后认为英语学习的目标应该为专业发展的达到了 90% ; 内在目标学生主要关注的是拓展知识和跨文化认知 且 在校生对内在目标的关注远低于毕业生 调查 2 语言技能 我们对南京工程

从调查统计( 表 1) 可以看出 工科学生英语学习关注目标在不同阶段存在较大差异 外在目标主要关注就业和专业发 展 尤其毕业后认为英语学习的目标应该为专业发展的达到了 90% ; 内在目标学生主要关注的是拓展知识和跨文化认知 且 在校生对内在目标的关注远低于毕业生 调查 2 语言技能 我们对南京工程 Shandong Foreign Language Teaching Journal 山东外语教学 2012年第3期( 总第148期) 卓越工程师教育培养计划 视野下的大学英语教学改革构想 乔小六 ( 南京工程学院 外语系 江苏 南京 211167) 摘要: 卓越工程师教育培养计划 是我国高等教育的重大项目 工程本科高校的大学英语教学必须顺应该计划 要求 通过重新定位自己的教学目标 重构课程设置 更新教学模式

More information

OOAD PowerDesigner OOAD Applying PowerDesigner CASE Tool in OOAD PowerDesigner CASE Tool PowerDesigner PowerDesigner CASE To

OOAD PowerDesigner OOAD Applying PowerDesigner CASE Tool in OOAD PowerDesigner CASE Tool PowerDesigner PowerDesigner CASE To PowerDesigner Applying PowerDesigner CASE Tool in OOAD albertchung@mpinfo.com.tw PowerDesigner CASE Tool PowerDesigner PowerDesigner CASE Tool PowerDesigner CASE Tool CASE Tool PowerDesignerUnified ProcessUMLing

More information

Vol. 15 No. 1 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb O21 A

Vol. 15 No. 1 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb O21 A 5 200 2 Vol 5 No JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Feb 200 2 2 50080 2 30024 O2 A 007-2683 200 0-0087- 05 A Goodness-of-fit Test Based on Empirical Likelihood and Application ZHOU

More information

2016-3-2ZS.indd

2016-3-2ZS.indd 中 国 科 技 资 源 导 刊 ISSN 1674-1544 2016 年 5 月 第 48 卷 第 3 期 40-44, 50 CHINA SCIENCE & TECHNOLOGY RESOURCES REVIEW ISSN 1674-1544 Vol.48 No.3 40-44, 50 May. 2016 安 徽 省 新 型 产 学 研 合 作 组 织 的 发 展 1 任 媛 媛 等 沙 其 富

More information

Microsoft Word - 19王建华.doc

Microsoft Word - 19王建华.doc 2012 年 12 月 图 学 学 报 December 2012 第 33 卷 第 6 期 JOURNAL OF GRAPHICS Vol.33 No.6 工 程 图 学 计 算 机 辅 助 教 学 实 践 与 思 考 王 建 华, 郝 育 新, 刘 令 涛 ( 北 京 信 息 科 技 大 学 机 电 学 院, 北 京 100192) 摘 要 : 随 着 计 算 机 技 术 的 迅 猛 发 展 和

More information

4

4 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 The Formation of Intervention State and Development of German Administrative Law Michael Stolleis, Translated by WANG Yin-hong (1.Goethe University Frankfurt, Frankfurt,

More information

28 2015 3 1 2 2011-2012 38 985 31 EXCEL 2005-2010 985 3 985 2011 2012 EXCEL 38 985 31 985 2011-2012 38 985 1. 38 985 90 20 70 1 2005-2010 2011-2012 13

28 2015 3 1 2 2011-2012 38 985 31 EXCEL 2005-2010 985 3 985 2011 2012 EXCEL 38 985 31 985 2011-2012 38 985 1. 38 985 90 20 70 1 2005-2010 2011-2012 13 36 3 Vol. 36 No.3 2 0 1 5 5 May 2 0 1 5 985 2011-2012 361005 2011-2012 985 985 985 2005-2012 985 985 G645 A 1001-4519 2015 03-0027 - 12 DOI 10. 14138 /j. 1001-4519. 2015. 03. 002712 2005-2010 985 2012

More information

广 类 型 对 定 位 在 应 用 型 地 方 本 科 院 校 发 展 具 有 促 进 作 用 统 一 的 任 职 条 件 能 确 保 某 一 职 称 具 有 同 一 起 点 的 质 量, 但 是 较 难 满 足 高 校 的 多 样 化 和 高 校 教 师 多 样 化 的 需 求, 可 能 形 成

广 类 型 对 定 位 在 应 用 型 地 方 本 科 院 校 发 展 具 有 促 进 作 用 统 一 的 任 职 条 件 能 确 保 某 一 职 称 具 有 同 一 起 点 的 质 量, 但 是 较 难 满 足 高 校 的 多 样 化 和 高 校 教 师 多 样 化 的 需 求, 可 能 形 成 JOURNAL OF NATIONAL ACADEMY OF EDUCATION ADMINISTRATION 论高校教师业技术职务聘任条件 基于地方本科院校制度文本分析 李泽彧 1 陈杰斌 2 1. 厦门理工学院 福建 厦门 361024 2. 厦门大学 福建 厦门 361005 摘 要 教师是地方本科院校转型和质量提升的主体和执行人 职务聘任条件作为教师 的重要评价指标具有导向功能 同时地方本科院校聘任条件应与其学校定位相匹配

More information

Microsoft Word - A201010-564.doc

Microsoft Word - A201010-564.doc 对 完 善 施 工 合 同 示 范 文 本 中 安 全 条 款 的 建 议 * 陈 洪 军, 李 华 龙 ( 中 国 矿 业 大 学 力 学 与 建 筑 工 程 学 院, 江 苏 徐 州 221116) 摘 要 : 建 筑 工 程 安 全 问 题 一 直 以 来 都 是 一 个 广 受 关 注 的 主 题 通 过 对 现 阶 段 国 家 出 台 安 全 政 策 文 件 与 施 工 合 同 示 范 文

More information

170 中 南 大 学 学 报 ( 社 会 科 学 版 ) 2012 年 第 18 卷 第 4 期 周 末 九 鼎 沦, 必 以 亡. 者 为 神, 三 山 九 鼎 有 知 也? 或 时 吏 知 怨 家 之 谋, 窃 举 持 亡, 惧 怨 家 怨 己, 云 自 去 凡 人 能 亡., 足 能 步 行

170 中 南 大 学 学 报 ( 社 会 科 学 版 ) 2012 年 第 18 卷 第 4 期 周 末 九 鼎 沦, 必 以 亡. 者 为 神, 三 山 九 鼎 有 知 也? 或 时 吏 知 怨 家 之 谋, 窃 举 持 亡, 惧 怨 家 怨 己, 云 自 去 凡 人 能 亡., 足 能 步 行 第 18 卷 第 4 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.18 No.4 2012 年 8 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Aug. 2012 西 汉 文 献 动 补 结 构 问 题 研 究 胡 伟 ( 复 旦 大 学 中 文 系, 上 海,200433; 暨 南 大 学 文 学 院, 广 东 广 州,510632) 摘 要

More information

a b

a b 38 3 2014 5 Vol. 38 No. 3 May 2014 55 Population Research + + 3 100038 A Study on Implementation of Residence Permit System Based on Three Local Cases of Shanghai Chengdu and Zhengzhou Wang Yang Abstract

More information

基于因子分析法对沪深农业类上市公司财务绩效实证分析

基于因子分析法对沪深农业类上市公司财务绩效实证分析 山 东 农 业 大 学 学 报 ( 自 然 科 学 版 ),2014,45(3):449-453 VOL.45 NO.3 2014 Journal of Shandong Agricultural University (Natural Science Edition) doi:10.3969/j.issn.1000-2324.2014.03.024 基 于 因 子 分 析 法 对 沪 深 农 业

More information

240 生 异 性 相 吸 的 异 性 效 应 [6] 虽 然, 心 理 学 基 础 研 [7-8] 究 已 经 证 实 存 在 异 性 相 吸 异 性 相 吸 是 否 存 在 于 名 字 认 知 识 别 尚 无 报 道 本 实 验 选 取 不 同 性 别 的 名 字 作 为 刺 激 材 料, 通

240 生 异 性 相 吸 的 异 性 效 应 [6] 虽 然, 心 理 学 基 础 研 [7-8] 究 已 经 证 实 存 在 异 性 相 吸 异 性 相 吸 是 否 存 在 于 名 字 认 知 识 别 尚 无 报 道 本 实 验 选 取 不 同 性 别 的 名 字 作 为 刺 激 材 料, 通 2011 年 Journal of Capital Medical University 4月 第2 期 Apr 2011 Vol 32 No 2 基础研究 doi: 10 3969 / j issn 1006-7795 2011 02 015 人脑识别不同性别名字反应时的差异研究 高迎霄 陈昭燃 * 张明霞 ( 首都医科大学神经生物系高级脑功能中心) 摘要 目的 探讨男女对不同性别名字认知加工速度是否存在差异

More information

31 17 www. watergasheat. com km 2 17 km 15 km hm % mm Fig. 1 Technical route of p

31 17 www. watergasheat. com km 2 17 km 15 km hm % mm Fig. 1 Technical route of p 31 17 215 9 CHINA WATER & WASTEWATER Vol. 31 No. 17 Sep. 215 < > 232 SUSTAIN BMP SUSTAIN TU992 C 1-462 215 17-111 - 8 Planning and Design of Sponge City Case Study of Beijing Yongding River Ecological

More information

C/C++ - 函数

C/C++ - 函数 C/C++ Table of contents 1. 2. 3. & 4. 5. 1 2 3 # include # define SIZE 50 int main ( void ) { float list [ SIZE ]; readlist (list, SIZE ); sort (list, SIZE ); average (list, SIZE ); bargragh

More information

10384 200115009 UDC Management Buy-outs MBO MBO MBO 2002 MBO MBO MBO MBO 000527 MBO MBO MBO MBO MBO MBO MBO MBO MBO MBO MBO Q MBO MBO MBO Abstract Its related empirical study demonstrates a remarkable

More information

Microsoft Word - 刘 慧 板.doc

Microsoft Word - 刘  慧 板.doc 中 国 环 境 科 学 2012,32(5):933~941 China Environmental Science 系 统 动 力 学 在 空 港 区 域 规 划 环 境 影 响 评 价 中 的 应 用 刘 慧 1,2, 郭 怀 成 1*, 盛 虎 1, 都 小 尚 1,3, 李 娜 1 1, 杨 永 辉 (1. 北 京 大 学 环 境 科 学 与 工 程 学 院, 北 京 100871; 2.

More information

Revit Revit Revit BIM BIM 7-9 3D 1 BIM BIM 6 Revit 0 4D 1 2 Revit Revit 2. 1 Revit Revit Revit Revit 2 2 Autodesk Revit Aut

Revit Revit Revit BIM BIM 7-9 3D 1 BIM BIM 6 Revit 0 4D 1 2 Revit Revit 2. 1 Revit Revit Revit Revit 2 2 Autodesk Revit Aut 60 2 2016 2 RAILWAY STANDARD DESIGN Vol. 60 No. 2 Feb. 2016 1004-2954201602-0071-06 BIM 1 1 2 2 1 1. 7140992. 710054 BIM BIM 3D 4D nd BIM 1 3D 4D Revit BIM BIM U442. 5TP391. 72 A DOI10. 13238 /j. issn.

More information

第16卷 第2期 邯郸学院学报 2006年6月

第16卷 第2期                                邯郸学院学报                            2006年6月 第 18 卷 第 4 期 邯 郸 学 院 学 报 2008 年 12 月 Vol.18 No.4 Journal of Handan College Dec. 2008 赵 文 化 研 究 论 赵 都 邯 郸 与 赵 国 都 城 研 究 问 题 朱 士 光 ( 陕 西 师 范 大 学 历 史 地 理 研 究 所, 陕 西 西 安 710062) 摘 要 : 战 国 七 雄 之 一 的 赵 国 都 城

More information

Fig. 1 Frame calculation model 1 mm Table 1 Joints displacement mm

Fig. 1 Frame calculation model 1 mm Table 1 Joints displacement mm 33 2 2011 4 ol. 33 No. 2 Apr. 2011 1002-8412 2011 02-0104-08 1 1 1 2 361003 3. 361009 3 1. 361005 2. GB50023-2009 TU746. 3 A Study on Single-span RC Frame Reinforced with Steel Truss System Yuan Xing-ren

More information

附件1:

附件1: 附 件 1: 全 国 优 秀 教 育 硕 士 专 业 学 位 论 文 推 荐 表 单 位 名 称 : 西 南 大 学 论 文 题 目 填 表 日 期 :2014 年 4 月 30 日 数 学 小 组 合 作 学 习 的 课 堂 管 理 攻 硕 期 间 及 获 得 硕 士 学 位 后 一 年 内 获 得 与 硕 士 学 位 论 文 有 关 的 成 果 作 者 姓 名 论 文 答 辩 日 期 学 科 专

More information

Microsoft Word - 王彬_已修改_.doc

Microsoft Word - 王彬_已修改_.doc 第 39 卷 第 1 期 应 用 科 技 Vol.39, No.1 2012 年 2 月 Applied Science and Technology Feb. 2012 doi:10.3969/j.issn.1009-671x.201110009 基 于 J2EE 网 络 教 学 系 统 的 设 计 与 实 现 李 静 梅, 王 彬, 彭 晴 晴 哈 尔 滨 工 程 大 学 计 算 机 科 学 与

More information

Ansys /4 Ansys % 9 60% MU10 M m 1 Fig. Actual situation of measured building 1 Fig. 1 First floor plan of typical r

Ansys /4 Ansys % 9 60% MU10 M m 1 Fig. Actual situation of measured building 1 Fig. 1 First floor plan of typical r 0 5 011 10 JOURNAL OF NATURAL DISASTERS Vol. 0 No. 5 Oct. 011 1004-4574 011 05-0018 - 06 1 3 1. 41008. 41008 3. 410000 7 0. 10g 7 0. 15g 3. 1% 5% P64. 3 A Field test and numerical simulations of seismic

More information

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui,

A dissertation for Master s degree Metro Indoor Coverage Systems Analysis And Design Author s Name: Sheng Hailiang speciality: Supervisor:Prof.Li Hui, 中 国 科 学 技 术 大 学 工 程 硕 士 学 位 论 文 地 铁 内 移 动 通 信 室 内 覆 盖 分 析 及 应 用 作 者 姓 名 : 学 科 专 业 : 盛 海 亮 电 子 与 通 信 导 师 姓 名 : 李 辉 副 教 授 赵 红 媛 高 工 完 成 时 间 : 二 八 年 三 月 十 日 University of Science and Technology of Ch A dissertation

More information

1對外華語文詞彙教學的策略研究_第三次印).doc

1對外華語文詞彙教學的策略研究_第三次印).doc 37 92 1 16 1 2 3 4 5 6 7 8????? 9????????? 10???????????????????? 11? 12 13 14 15 16 The Strategy Research of Teaching Chinese as a Second Language Li-Na Fang Department of Chinese, National Kaohsiung

More information

輥輯訛 % 2010~ % Northwestern Journal of Ethnology 1. J., 1994, 3 14~ J., ~150.

輥輯訛 % 2010~ % Northwestern Journal of Ethnology 1. J., 1994, 3 14~ J., ~150. 1001-5558 2012 01-0029-11 G75 A 12 BGA070049 07JHQ006 1. 50 J., 1999, 5 46~54. 2. J. 1998, 2 3~24.. J. 2008, 6 2 3~42. N. W. Journal of Ethnology 2012 1 72 2012.No.1 Total No.72 12 34 56 78 910 輥輯訛 2009

More information

Microsoft Word - 贺小凤,王国胜.doc

Microsoft Word - 贺小凤,王国胜.doc 深 圳 职 业 技 术 学 院 学 报 2010 年 第 1 期 Journal of Shenzhen Polytechnic No.1, 2010 深 圳 市 某 高 校 室 内 空 气 中 甲 醛 污 染 状 况 的 调 查 分 析 贺 小 凤, 王 国 胜 ( 深 圳 信 息 职 业 技 术 学 院 计 算 机 应 用 系, 广 东 深 圳 518029) 摘 要 : 为 了 了 解 深 圳

More information

如 语 言 研 究 型 数 据 库 那 样 成 熟, 但 可 为 构 建 华 文 教 材 数 据 库 提 供 借 鉴 此 类 数 据 库 中 有 代 表 性 的 有 北 京 语 言 大 学 的 对 外 汉 语 教 材 检 索 数 据 库, 中 央 民 族 大 学 的 国 际 汉 语 教 学 国 别

如 语 言 研 究 型 数 据 库 那 样 成 熟, 但 可 为 构 建 华 文 教 材 数 据 库 提 供 借 鉴 此 类 数 据 库 中 有 代 表 性 的 有 北 京 语 言 大 学 的 对 外 汉 语 教 材 检 索 数 据 库, 中 央 民 族 大 学 的 国 际 汉 语 教 学 国 别 国 别 华 文 教 材 数 据 库 构 建 意 义 与 方 法 1 盛 译 元 华 侨 大 学 华 文 学 院 shengyiyuan@hqu.edu.cn 摘 要 : 基 于 数 据 库 的 语 言 研 究 方 法 目 前 已 经 被 广 泛 地 应 用 于 语 言 研 究 的 各 个 领 域, 但 在 教 材 研 究 领 域, 这 种 方 法 的 使 用 相 对 滞 后 现 有 教 材 数 据

More information

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO

Important Notice SUNPLUS TECHNOLOGY CO. reserves the right to change this documentation without prior notice. Information provided by SUNPLUS TECHNOLO Car DVD New GUI IR Flow User Manual V0.1 Jan 25, 2008 19, Innovation First Road Science Park Hsin-Chu Taiwan 300 R.O.C. Tel: 886-3-578-6005 Fax: 886-3-578-4418 Web: www.sunplus.com Important Notice SUNPLUS

More information

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A

Mechanical Science and Technology for Aerospace Engineering October Vol No. 10 Web SaaS B /S Web2. 0 Web2. 0 TP315 A 2012 10 31 10 Mechanical Science and Technology for Aerospace Engineering October Vol. 31 2012 No. 10 Web2. 0 400030 SaaS B /S Web2. 0 Web2. 0 TP315 A 1003-8728 2012 10-1638-06 Design and Implementation

More information

Microsoft Word - KSAE06-S0262.doc

Microsoft Word - KSAE06-S0262.doc Stereo Vision based Forward Collision Warning and Avoidance System Yunhee LeeByungjoo KimHogi JungPaljoo Yoon Central R&D Center, MANDO Corporation, 413-5, Gomae-Ri, Gibeung-Eub, Youngin-Si, Kyonggi-Do,

More information

《中文信息学报》投稿模版

《中文信息学报》投稿模版 文 章 编 号 :1003-0077(2011)00-0000-00 对 外 汉 语 教 学 领 域 话 题 语 料 库 的 研 究 与 构 建 胡 韧 奋 1, 朱 琦 1, 杨 丽 姣 (1. 北 京 师 范 大 学, 北 京 市 100875) 摘 要 : 对 外 汉 语 教 学 领 域, 教 材 上 的 课 文 通 常 围 绕 一 个 话 题 展 开, 话 题 是 教 学 内 容 的 集 中

More information

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10.

Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug GPS,,, : km, 2. 51, , ; ; ; ; DOI: 10. 22 4 2017 8 Vol. 22 No. 4 JOURNAL OF HARBIN UNIVERSITY OF SCIENCE AND TECHNOLOGY Aug. 2017 150080 GPS,,, : 27. 36 km, 2. 51, 110. 43, ; ; ; ; DOI: 10. 15938 /j. jhust. 2017. 04. 015 U469. 13 A 1007-2683

More information

JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 6 Dec

JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 6 Dec 31 6 2011 12 JOURNAL OF EARTHQUAKE ENGINEERING AND ENGINEERING VIBRATION Vol. 31 No. 6 Dec. 2011 1000-1301 2011 06-0159 - 08 1 1 1 1 2 1. 150080 2. 100124 1 2 3 P315. 93 TU 43 TU41 A Shaking table test

More information

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of

Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of 2003 MBA 600795 SWOT Abstract After over ten years development, Chinese securities market has experienced from nothing to something, from small to large and the course of being standardized. To all securities

More information

我国高速公路建设管理现状和主要问题

我国高速公路建设管理现状和主要问题 Modern Management 现 代 管 理, 2012, 2, 24-28 http://dx.doi.org/10.12677/mm.2012.21005 Published Online January 2012 (http://www.hanspub.org/journal/mm) China Highway Current Situation and Problem of Construction

More information

Technical Acoustics Vol.27, No.4 Aug., 2008,,, (, ) :,,,,,, : ; ; : TB535;U : A : (2008) Noise and vibr

Technical Acoustics Vol.27, No.4 Aug., 2008,,, (, ) :,,,,,, : ; ; : TB535;U : A : (2008) Noise and vibr 8 8 Technical Acoustics Vol., No. Aug., 8,,, (, 8) :,,,,,, : ; ; : TB;U.+ 9 : A : -(8)--- Noise and vibration tests for fuel cell vehicel and noise sources identification SHEN Xiu-min, ZUO Shu-guang, CAI

More information

Microsoft Word - ED-774.docx

Microsoft Word - ED-774.docx journal.newcenturyscience.com/index.php/gjanp Global Journal of Advanced Nursing Practice,214,Vol.1,No.1 The practicality of an improved method of intravenous infusion exhaust specialized in operating

More information

闲 旅 游 现 已 成 为 城 市 居 民 日 常 生 活 的 重 要 部 分 袁 它 的 出 现 标 志 着 现 代 社 会 文 明 的 进 步 遥 据 国 外 学 者 预 测 袁 2015 年 左 右 袁 发 达 国 家 将 陆 续 进 入 野 休 闲 时 代 冶 袁 发 展 中 国 家 也 将

闲 旅 游 现 已 成 为 城 市 居 民 日 常 生 活 的 重 要 部 分 袁 它 的 出 现 标 志 着 现 代 社 会 文 明 的 进 步 遥 据 国 外 学 者 预 测 袁 2015 年 左 右 袁 发 达 国 家 将 陆 续 进 入 野 休 闲 时 代 冶 袁 发 展 中 国 家 也 将 第 29 卷 第 5 期 2014 年 10 月 四 川 理 工 学 院 学 报 渊 社 会 科 学 版 冤 Journal of Sichuan University of Science & Engineering 渊 Social Sciences Edition 冤 Vol.29 No.5 Oct.2014 微 旅 游 研 究 综 述 赵 红 莉 渊 武 夷 学 院 旅 游 学 院 袁 福

More information

44 深 圳 信 息 职 业 技 术 学 院 学 报 第 10 卷 业 实 际 进 出 口 单 证 样 本 的 演 示 与 讲 解, 导 致 学 生 在 学 校 看 到 的 都 是 过 时 的 单 据 演 练 的 陈 旧 的 工 作 流 程, 走 上 工 作 岗 位 后, 一 旦 遇 到 实 际 问

44 深 圳 信 息 职 业 技 术 学 院 学 报 第 10 卷 业 实 际 进 出 口 单 证 样 本 的 演 示 与 讲 解, 导 致 学 生 在 学 校 看 到 的 都 是 过 时 的 单 据 演 练 的 陈 旧 的 工 作 流 程, 走 上 工 作 岗 位 后, 一 旦 遇 到 实 际 问 第 10 卷 第 4 期 深 圳 信 息 职 业 技 术 学 院 学 报 Vol.10 No.4 第 42012 期 年 12 月 Journal of Shenzhen Institute of Information Technology Dec. 2012 43 岗 课 证 赛 互 相 融 合 建 立 商 务 英 语 专 业 实 践 教 学 体 系 的 研 究 与 实 践 陈 岩 ( 广 东

More information

2013_6_3.indd

2013_6_3.indd 中 国 科 技 资 源 导 刊 ISSN 1674-1544 2013 年 11 月 第 45 卷 第 6 期 95-99, 107 CHINA SCIENCE & TECHNOLOGY RESOURCES REVIEW ISSN 1674-1544 Vol.45 No.6 95-99, 107 Nov. 2013 构 建 基 于 大 数 据 的 智 能 高 校 信 息 化 管 理 服 务 系 统

More information

% % 99% Sautman B. Preferential Policies for Ethnic Minorities in China The Case

% % 99% Sautman B. Preferential Policies for Ethnic Minorities in China The Case 1001-5558 2015 03-0037-11 2000 2010 C95 DOI:10.16486/j.cnki.62-1035/d.2015.03.005 A 1 2014 14CRK014 2013 13SHC012 1 47 2181 N. W. Journal of Ethnology 2015 3 86 2015.No.3 Total No.86 20 70 122000 2007

More information

~ ~

~ ~ * 40 4 2016 7 Vol. 40 No. 4 July 2016 35 Population Research 2014 1 2016 2016 9101. 0 40 49. 6% 2017 ~ 2021 1719. 5 160 ~ 470 100872 Accumulated Couples and Extra Births under the Universal Tw o-child

More information

1 1. M J M M J M J M M J

1 1. M J M M J M J M M J 2018 3 40 2 Modern Law Science Mar. 2018 Vol. 40 No. 2 1001-2397 2018 02-0041 - 16 100872 DF092 A DOI 10. 3969/j. issn. 1001-2397. 2018. 02. 03!"# 1 2017-12 - 05 2017 17CFX006 1. 1982 M. 1997 73-146 216-244.

More information

Microsoft Word - 18-p0402-c3.doc

Microsoft Word - 18-p0402-c3.doc 第 14 卷 第 3 期 中 南 大 学 学 报 ( 社 会 科 学 版 ) Vol.14 No3 2008 年 6 月 J. CENT. SOUTH UNIV. (SOCIAL SCIENCE) Jun 2008 肺 病 隐 喻 与 性 别 身 份 建 构 中 国 现 代 文 学 中 的 肺 病 意 象 分 析 王 冬 梅 ( 枣 庄 学 院 中 文 系, 山 东 枣 庄,277160) 摘 要

More information

) ( ) 2008 (300m ) 1 FRP [1 ] FRP 3 FRP FRP (CFRP) FRP CFRP (fiber reinforced polymer FRP) 60 % 160MPa 2400MPa [2 ] FRP 1 2mm FRP FRP 1 FRP C

) ( ) 2008 (300m ) 1 FRP [1 ] FRP 3 FRP FRP (CFRP) FRP CFRP (fiber reinforced polymer FRP) 60 % 160MPa 2400MPa [2 ] FRP 1 2mm FRP FRP 1 FRP C 28 4 Vol128 No14 2007 8 Journal of Building Structures Aug12007 :100026869 (2007) 0420109208 FRP ( 100084) : (FRP) FRP FRP FRP FRP FRP 5 : (FRP) ; ; ; ; :TU383 :A Concepts forms and basic analysis of FRP

More information

symmetrical cutting patterns with various materials for visual designing; ii. This part combined costumes, bags and oilpaper umbrellas with the tradit

symmetrical cutting patterns with various materials for visual designing; ii. This part combined costumes, bags and oilpaper umbrellas with the tradit The Application of Chinese Paper Cutting Patterns to Bag,Costume Designs and oilpaper umbrella TSAI,Yi-lun LIN,Yu-wen Abstract Using bags and costumes is regarded as the extension of human body, and the

More information

Fig. 1 1 The sketch for forced lead shear damper mm 45 mm 4 mm 200 mm 25 mm 2 mm mm Table 2 The energy dissip

Fig. 1 1 The sketch for forced lead shear damper mm 45 mm 4 mm 200 mm 25 mm 2 mm mm Table 2 The energy dissip * - 1 1 2 3 1. 100124 2. 100124 3. 210018 - ABAQUS - DOI 10. 13204 /j. gyjz201511033 EXPERIMENTAL STUDY AND THEORETICAL MODEL OF A NEW TYPE OF STEEL-LEAD DAMPING Shen Fei 1 Xue Suduo 1 Peng Lingyun 2 Ye

More information

1977 471.2 30 56% 2 1978 1 1980 1980 44.8 5 2010 1 21 6 12 2012 2. 30% 2 (1) 基 层 义 务 教 育 扩 张 的 产 物 1987 1 1 1987 20 50 1992 8 1956 1972 1965 18 102 92

1977 471.2 30 56% 2 1978 1 1980 1980 44.8 5 2010 1 21 6 12 2012 2. 30% 2 (1) 基 层 义 务 教 育 扩 张 的 产 物 1987 1 1 1987 20 50 1992 8 1956 1972 1965 18 102 92 2014 3 13 2 Journal of Educational Science of Hunan Normal University Vol.13 No.2 Mar. 2014 朱 启 臻, 田 牧 野 100193 推 动 城 乡 教 育 均 衡 发 展, 关 键 在 于 提 高 农 村 学 校 教 师 的 素 质 在 我 国 独 特 的 国 情 下, 农 村 学 校 始 终 处 于 师 资

More information

% 30% % % % %

% 30% % % % % 2 2 Economics of Education Research (Beida) 3 2004 6 Institute of Economics of Education, Peking University 100871 2001 115 6 70% 2002 145 6 64.7% 5 2002 80% 2003 212 67 46% 2003 6 2003 8 1 50 15 2003

More information

1 引言

1 引言 P P 第 40 卷 Vol.40 第 7 期 No.7 计 算 机 工 程 Computer Engineering 014 年 7 月 July 014 开 发 研 究 与 工 程 应 用 文 章 编 号 :1000-348(014)07-081-05 文 献 标 识 码 :A 中 图 分 类 号 :TP391.41 摘 基 于 图 像 识 别 的 震 象 云 地 震 预 测 方 法 谢 庭,

More information

Microsoft Word - A201202-493_1329751213.doc

Microsoft Word - A201202-493_1329751213.doc 5 10 15 20 25 BP 神 经 网 络 在 中 国 创 业 板 企 业 成 长 性 预 测 研 究 ** 孙 静 稳, 刘 金 平 ( 中 国 矿 业 大 学 管 理 学 院, 江 苏 徐 州 221116) 摘 要 : 根 据 创 业 板 企 业 的 高 科 技 和 高 成 长 性 特 点, 成 为 金 融 证 券 市 场 热 门 关 注 的 对 象, 其 成 长 性 研 究 是 资 本

More information

吴 郁 玲 等 : 农 户 对 宅 基 地 使 用 权 确 权 效 应 的 认 知 研 究 以 武 汉 市 为 例 29 the paper tried to provide a basis to improve the confirmation policy efficiency and to f

吴 郁 玲 等 : 农 户 对 宅 基 地 使 用 权 确 权 效 应 的 认 知 研 究 以 武 汉 市 为 例 29 the paper tried to provide a basis to improve the confirmation policy efficiency and to f 第 30 卷 第 4 期 2016 年 4 月 中国土地科学 China Land Sciences Vol.30 No.4 Apr.,2016 doi: 10.11994/zgtdkx.20160523.153245 农户对宅基地使用权确权效应的认知研究 以武汉市为例 吴郁玲 1 侯 娇 1 冯忠垒 2 周 勇 1 1. 华中师范大学城环学院 湖北 武汉 430079 2. 中国地质大学 武汉 经济管理学院

More information

Microsoft Word - 专论综述1.doc

Microsoft Word - 专论综述1.doc 1 基 于 协 同 过 滤 的 高 考 志 愿 推 荐 系 统 徐 兰 静, 李 珊, 严 钊 ( 南 京 航 空 航 天 大 学 经 济 与 管 理 学 院, 南 京 211100) 摘 要 : 近 年 来 信 息 过 载 问 题 的 出 现 使 得 个 性 化 推 荐 技 术 应 运 而 生, 其 中 协 同 过 滤 推 荐 技 术 通 过 在 用 户 和 信 息 之 间 建 立 联 系, 被

More information

198 天 津 体 育 学 院 学 报 谁 来 教, 怎 么 教 的 问 题 长 时 间 悬 而 未 决, 或 泛 泛 而 谈, 或 知 行 不 一, 以 至 于 使 中 小 学 武 术 教 育 积 重 难 返, 停 滞 不 前 因 此, 切 实 推 进 中 小 学 武 术 教 育 的 发 展 要

198 天 津 体 育 学 院 学 报 谁 来 教, 怎 么 教 的 问 题 长 时 间 悬 而 未 决, 或 泛 泛 而 谈, 或 知 行 不 一, 以 至 于 使 中 小 学 武 术 教 育 积 重 难 返, 停 滞 不 前 因 此, 切 实 推 进 中 小 学 武 术 教 育 的 发 展 要 成果报告 197~ ~104 197 天津体育学院学报 Original Articles 回归原点的反思 中小学武术教育务实推进研究 王晓晨 1 2 赵光圣 1 张 摘要 峰3 采用文献资料 实地调研 参与观察等研究方法 基于文化 社会 教育 历史等学科理论对现阶段中小学武术教育的不足进行了原点性反 思 研究认为 国家政策的小心翼翼与富有弹性致使其对中小学武术教育的支持呈现出心有余而力不足的态势

More information

,,,,,,, (1975) (,2004 : ) (1981) 20,, (,1987 :6) L ,, (,2005b),,, ;,,,,,, ( ) (,1989) :, :A,, ;B, ;C ;D, (,1987 : ) 16

,,,,,,, (1975) (,2004 : ) (1981) 20,, (,1987 :6) L ,, (,2005b),,, ;,,,,,, ( ) (,1989) :, :A,, ;B, ;C ;D, (,1987 : ) 16 : 3 :,,, 2003 CGSS,, :,, 20 80, ( ),, 3 2003 (CGSS2003) 2003 CGSS, www. chinagss. org 2003 CGSS,, 15 2007. 6,,,,,,, (1975) (,2004 :284-286) (1981) 20,, (,1987 :6) L. 19 20,, (,2005b),,, ;,,,,,, ( ) (,1989)

More information

Microsoft Word - 1843-1847 tb20110372 何颖

Microsoft Word - 1843-1847  tb20110372  何颖 微 生 物 学 通 报 Microbiology China tongbao@im.ac.cn DEC 20, 2011, 8(12): 184 1847 2011 by Institute of Microbiology, CAS 高 校 教 改 纵 横 基 于 建 构 主 义 学 习 理 论 的 微 生 物 学 实 验 课 程 教 学 新 模 式 何 颖 廖 国 建 谢 建 平 * ( 西 南

More information

Tenure-track Tenure-track WTO Peer Effect 46

Tenure-track Tenure-track WTO Peer Effect 46 2004 ~ 2014 * 21 Tenure-track 2004 2004 Tenure-track * 45 2015 1 3 21 2003 Tenure-track Tenure-track WTO 2004 985 Peer Effect 46 2007 Tenure-track Tenure AAUP 1915 12 31 1 1940 7 1 Tenure-track 2 Tenure

More information

m 3 m m 84 m m m m m m m

m 3 m m 84 m m m m m m m 2011 8 8 155 JOURNAL OF RAILWAY ENGINEERING SOCIETY Aug 2011 NO. 8 Ser. 155 1006-2106 2011 08-0096 - 06 430063 1 2 3 U231 +. 4 A Design of Underground Space of Furong Square Station of Urban Rail Transit

More information

40 强 度 与 环 境 2010 年 强 烈 的 振 动 和 冲 击 载 荷, 这 就 对 阀 门 管 路 等 部 件 连 接 的 静 密 封 结 构 提 出 了 很 高 的 要 求 某 液 体 火 箭 发 动 机 静 密 封 涉 及 高 压 超 低 温 大 尺 寸 三 个 严 酷 条 件, 具

40 强 度 与 环 境 2010 年 强 烈 的 振 动 和 冲 击 载 荷, 这 就 对 阀 门 管 路 等 部 件 连 接 的 静 密 封 结 构 提 出 了 很 高 的 要 求 某 液 体 火 箭 发 动 机 静 密 封 涉 及 高 压 超 低 温 大 尺 寸 三 个 严 酷 条 件, 具 2010 年 12 月 强 度 与 环 境 Dec.2010 第 37 卷 第 6 期 STRUCTURE & ENVIRONMENT ENGINEERING Vol.37, No.6 低 温 液 体 火 箭 发 动 机 高 压 静 密 封 有 限 元 分 析 刘 博 乔 桂 玉 许 健 周 炜 向 猛 ( 北 京 航 天 动 力 研 究 所, 北 京 100076) 摘 要 : 以 某 型 号 液

More information

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg

A VALIDATION STUDY OF THE ACHIEVEMENT TEST OF TEACHING CHINESE AS THE SECOND LANGUAGE by Chen Wei A Thesis Submitted to the Graduate School and Colleg 上 海 外 国 语 大 学 SHANGHAI INTERNATIONAL STUDIES UNIVERSITY 硕 士 学 位 论 文 MASTER DISSERTATION 学 院 国 际 文 化 交 流 学 院 专 业 汉 语 国 际 教 育 硕 士 题 目 届 别 2010 届 学 生 陈 炜 导 师 张 艳 莉 副 教 授 日 期 2010 年 4 月 A VALIDATION STUDY

More information

. 3. MOOC 2006 MOOC Automated Text Marker 2014 e-rater Yigal et al MOOC Coursera Edx 97

. 3. MOOC 2006 MOOC Automated Text Marker 2014 e-rater Yigal et al MOOC Coursera Edx 97 23 3 2017 6 Open Education Research Vol. 23 No. 3 Jun. 2017 1 2 1 2 1. 100875 2. 100875 PPT G434 A 1007-2179 2017 03-0096-09 Coursera Edx MOOC 100 2 3- social network services SNS 4 2008 2009 2017-03-

More information

标题

标题 012 Journal of Library Science in China 嘉 兴 模 式 的 延 伸 与 深 化 : 从 总 分 馆 体 系 到 图 书 馆 服 务 体 系 李 超 平 摘 要 嘉 兴 模 式 包 含 两 个 体 系 : 一 是 以 总 分 馆 为 核 心 的 公 共 图 书 馆 服 务 体 系, 二 是 跨 系 统 的 图 书 馆 服 务 联 盟 体 系 研 究 发 现, 从

More information

Microsoft Word - A201009-646.doc

Microsoft Word - A201009-646.doc # 中 国 网 络 游 戏 外 挂 问 题 现 状 分 析 * 兰 晓, 尹 杰 ( 中 国 传 媒 大 学 信 息 工 程 学 院 ) 摘 要 : 网 络 游 戏 外 挂 的 泛 滥 严 重 阻 碍 了 中 国 网 络 游 戏 产 业 的 正 常 发 展 本 文 给 出 了 网 络 游 戏 外 挂 的 定 义, 并 对 当 前 中 国 网 络 游 戏 存 在 的 安 全 问 题 进 行 了 分 析,

More information

Microsoft PowerPoint - ch6 [相容模式]

Microsoft PowerPoint - ch6 [相容模式] UiBinder wzyang@asia.edu.tw UiBinder Java GWT UiBinder XML UI i18n (widget) 1 2 UiBinder HelloWidget.ui.xml: UI HelloWidgetBinder HelloWidget.java XML UI Owner class ( Composite ) UI XML UiBinder: Owner

More information

前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii

前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii 前言 C# C# C# C C# C# C# C# C# microservices C# More Effective C# More Effective C# C# C# C# Effective C# 50 C# C# 7 Effective vii C# 7 More Effective C# C# C# C# C# C# Common Language Runtime CLR just-in-time

More information