DbC vs. Exception

Size: px
Start display at page:

Download "DbC vs. Exception"

Transcription

1 DbC vs. Exception 契约式设计 vs. 异常

2 Exception 问题 何谓 异常 (Exception)? 一种情况要 异常 到什么程度才算 异常? 为什么要引入异常处理机制? Robustness? Readability? 如何进行异常处理? Mandatory or Optional 不同的认识, 不同的答案 Java/C++/C# Eiffel

3 Java Exception Mechanisms 3 Java 对 Exception 的界定较宽 因而需认真区分不同类型的 Exceptions Java 的 Exception 机制回顾 try/catch/finally throw Exceptions 自定义 Exceptions Java Exception 与 Design by Contract Exception 的转换

4 What are Exceptions? Many exceptional things can happen during the running of a program, e.g.: User mis-types input Web page not available Array index out of bounds Method called on a null object Out of memory File not found Divide by zero Bug in the actual language implementation Exceptions are unexpected conditions in programs. checked unchecked sys errors 4

5 We can distinguish 3 categories: checked exceptions Problems to do with the program's interaction with the world. The world is unpredictable, so we would expect these things to happen in production code, and so need to handle them. The World Checked Exceptions Program System 5

6 We can distinguish 3 categories: checked exceptions Problems to do with the program's interaction with the world. unchecked exceptions Problems within the program itself (i.e. violations of the contract, or bugs). The World These should be removed by testing, and not occur in production code. Checked Exceptions Unchecked Exceptions Program System 6

7 We can distinguish 3 categories: checked exceptions Problems to do with the program's interaction with the world. unchecked exceptions Problems within the program itself (i.e. violations of the contract, or bugs). system errors Problems with the underlying system. These are outside our control. Unchecked Exceptions The World Program System Checked Exceptions System Errors 7

8 Checked vs Unchecked Exceptions an important distinction, which the Java Exception class hierarchy does make, but in a rather confusing way 8

9 Checked vs Unchecked Exceptions it's normal to let these just crash the program so we can debug it. we would normally check for these, and deal with them when they occur. Unchecked Exceptions The World Program System Checked Exceptions System Errors Exception handling is the business of handling these things appropriately. 9

10 Exception Hierarchy in Java Throwable Error Exception RuntimeException... RuntimeException The World Checked Exceptions Exception RuntimeException Unchecked Exceptions Program System System Errors Error 10

11 What do we want of exceptions? Ideally, a language (and its implementation) should: Restrict the set of possible exceptions to reasonable ones e.g. no pointers to deallocated memory 11

12 What do we want of exceptions? Ideally, a language (and its implementation) should: Restrict the set of possible exceptions to reasonable ones Indicate where they happened, and distinguish between them and not map them all to bus error etc. 12

13 What do we want of exceptions? Ideally, a language (and its implementation) should: Restrict the set of possible exceptions to reasonable ones Indicate where they happened, and distinguish between them Allow exceptions to be dealt with in a different place in the code from where they occur so normal case code can be written cleanly without having to worry about them 13

14 What do we want of exceptions? Ideally, a language (and its implementation) should: Restrict the set of possible exceptions to reasonable ones Indicate where they happened, and distinguish between them Allow exceptions to be dealt with in a different place in the code from where they occur so we throw exceptions where they occur, and catch them where we want to deal with them. 14 Ideally, we don't want non-fatal exceptions to be thrown too far this breaks up the modularity of the program and makes it hard to reason about.

15 Exceptions in Java a reminder In Java, the basic exception handling construct is to: try a block of code which normally executes ok catch any exceptions that it generates, and finally do anything we want to do irrespective of what happened before. If a thrown exception is not caught, it propagates out to the caller and so on until main. If it is never caught, it terminates the program. If a method can generate (checked) exceptions but does not handle them, it has to explicitly declare that it throws them so that clients know what to expect. 15

16 The Throwable Class Hierarchy The standard API defines many different exception types basic ones in java.lang others in other packages, especially java.io Throwable Top level class is not Exception but Throwable. Error Exception RuntimeException... 16

17 Throwable Error Exception Problems with the underlying Java platform, e.g. VirtualMachineError. RuntimeException... User code should never explicitly generate Errors. This is not always followed in the Java API, and you may occasionally need to say catch (Throwable e) to detect some bizarre error condition 17

18 Throwable Error Exception Problems with the underlying Java platform, e.g. VirtualMachineError. RuntimeException... User code should never explicitly generate Errors. In general, you want to catch specific sorts of (checked) exceptions, and saying catch (Exception e) is bad style. never mind Throwable! 18

19 Throwable Error Exception RuntimeException... Unchecked exceptions are subclasses of RuntimeException It would be much clearer if this was called UncheckedException These include our old friends NullPointerException and ArrayIndexOutOfBoundsException. Virtually any method can in principle throw one or more of these, so there's no requirement to declare them in throws clauses. 19

20 Throwable Error Exception All other exceptions are checked exceptions RuntimeException... It would be nice if there was a class CheckedException. 20

21 Throwable Error Exception All other exceptions are checked exceptions RuntimeException... The most common ones are IOExceptions such as FileNotFoundException. If you write code which can throw one of these, you must either catch it or declare that the method throws it. The compiler goes to enormous lengths to enforce this, and related constraints, e.g. that all overridden versions of a method have consistent throws clauses. 21

22 Exception Handling and DbC Exceptions are about dealing with things going wrong at runtime. DbC is about statically defining the conditions under which code is supposed to operate. (The two are nicely complementary.) Unchecked exceptions are what happens when the contract is broken Checked exceptions are expected so are not contract violations. to happen from time to time e.g. if a precondition that an array has at least one element is broken, an ArrayIndexOutOfBoundsException will probably occur. 22

23 So if we're going to use DbC,we ought to structure our code into: code which deals with The World Methods doing this will have no (or weak) preconditions, and will deal with problems via exception handling. 23

24 So if we're going to use DbC,we ought to structure our code into: code which deals with The World code which is insulated from The World. This can have strong preconditions and won't throw exceptions (apart from unchecked ones during debugging). 24

25 So if we're going to use DbC,we ought to structure our code into: code which deals with The World code which is insulated from The World. E.g. an application involving form-filling should have code which validates the user input for type-correctness etc. code which relies on the input being correct to process it If these two sorts of operations are mixed together, the application will probably be harder to maintain and more error-prone. 25

26 Converting Exceptions Good OO design decouples things. E.g. in most patterns there's a Client class which delegates operations to some black box in the pattern. Client op Black box some application-specific code some application-independent library 26

27 Converting Exceptions Good OO design decouples things. E.g. in most patterns there's a Client class which delegates operations to some black box in the pattern. Client op Black box some application-specific code some application-independent library What happens if the black box throws a (checked) exception? 27

28 Converting Exceptions Good OO design decouples things. E.g. in most patterns there's a Client class which delegates operations to some black box in the pattern. Client op Black box some application-specific code may have its own exception types, but they need to be applicationspecific. some application-independent library exceptions thrown from within the library will be applicationindependent. 28

29 try {... obj.delegateop(...);... } catch (ApplicationIndependentException e){ throw new ApplicationSpecificException(e); } ApplicationSpecificException will therefore have a constructor which takes an ApplicationIndependentException extracts the relevant information and re-casts it in application-specific terms. 29

30 Example Consider a compiler for an oo language In such a compiler, it's useful to have an explicit representation of the inheritance hierarchy of the source program as a tree (or graph). 30

31 Example Consider a compiler for an oo language which has an application-independent Hierarchy class which represents a hierarchy of arbitrary key-value pairs. The key is the class name and the value is the definition of the class. 31

32 Example Consider a compiler for an oo language which has an application-independent Hierarchy class which represents a hierarchy of arbitrary key-value pairs. If something goes wrong in building or using a Hierarchy an InvalidHierarchyException is thrown. e.g. a node has no parent, or there's a cycle 32

33 33 Example Consider a compiler for an oo language which has an application-independent Hierarchy class which represents a hierarchy of arbitrary key-value pairs. If something goes wrong in building or using a Hierarchy an InvalidHierarchyException is thrown. If this occurs while the class hierarchy is being built, it means the user has mis-spelt a class name or whatever. The InvalidHierarchyExcetpion is converted to a (checked) IllegalInheritanceException resulting in a suitable error message being displayed to the user. If it happens later, an (unchecked) CompilerBrokenExpection is thrown instead, because it means there's a bug in the compiler.

34 Summary Exception handling is an important, highly integrated, part of the Java system, one of the Really Neat Things About Java. Unchecked exceptions routinely occur during debugging, and make that process much easier. By product shipping time, they should no longer occur. Checked exceptions happen when the program's interaction with the world departs from the normal case. Make sure you handle them appropriately. In particular, think hard about where to handle an exception, so as to simplify the normal-case code, but not to do the handling so far away that modularity is compromised. Application-independent exceptions need to be converted to application-specific ones. 34

35 Eiffel Exception 机制简介 35 Eiffel 观点 : 契约破坏才会有 Exception Eiffel Exception 机制的设计基于此观点

36 Basic Concepts 36 The need for exceptions arises when the contract is broken.

37 Basic Concepts 37 Exception: an undesirable event occurs during the execution of a routine as a result of the failure of some operation called by the routine.

38 The original strategy 38 r (...) is require do ensure end... op1 op2... opi... opn... Fails, triggering an exception in r (r is recipient of exception).

39 Causes of exceptions 39 Assertion violation Void call (x.f with no object attached to x) Operating system signal (arithmetic overflow, no more memory, interrupt...)

40

41 Handling exceptions properly 41 Safe exception handling principle: There are only two acceptable ways to react for the recipient of an exception: Failure (Organized Panic 合理组织的 恐慌 ): clean up the environment, terminate the call and report failure to the caller. Panic: making sure that the caller gets an exception Organized: restoring a consistent execution state Retrying: Try again, using a different strategy (or repeating the same strategy).

42 How not to do things? 42 (From an Ada textbook) sqrt (x: REAL) return REAL is begin exception if x < 0.0 then else end raise Negative; normal_square_root_computation; Give up and return to the caller as if everything was fine, although not when Negative => put ("Negative argument"); return; when others => end; -- sqrt

43 The call chain 43 r0 Routine call r1 r2 r3 r4

44 Exception mechanism 44 Two constructs: A routine may contain a rescue clause. A rescue clause may contain a retry instruction. A rescue clause that does not execute a retry leads to failure of the routine (this is the organized panic case). Failure Principle If an exception occurs in a routine without rescue clause it will cause the routine to fail, trigger an exception in its caller.

45 45 Transmitting over an unreliable line (1) Max_attempts: INTEGER is 100 attempt_transmission (message: STRING) is -- Transmit message in at most local do rescue -- Max_attempts attempts. failures: INTEGER unsafe_transmit (message) failures := failures + 1 if failures < Max_attempts then retry end end

46 46 Transmitting over an unreliable line (2) Max_attempts: INTEGER is 100 failed: BOOLEAN attempt_transmission (message: STRING) is -- Try to transmit message; -- if impossible in at most Max_attempts -- attempts, set failed to true. local failures: INTEGER do if failures < Max_attempts then unsafe_transmit (message) else failed := True end rescue failures := failures + 1 retry end

47 If no exception clause (1) 47 Absence of a rescue clause is equivalent, in first approximation, to an empty rescue clause: f (...) is do... end is an abbreviation for f (...) is do... rescue end -- Nothing here (empty instruction list) (This is a provisional rule; see next.)

48 The correctness of a class 48 create a.make ( ) S1 For every exported routine r: {INV and Prer} dor {Postr and INV} For every creation procedure cp: {Precp} docp {Postcp and INV} S2 S3 S4 a.f ( ) a.g ( ) a.f ( )

49 Exception correctness: A quiz 49 For the normal body: {INV and Prer} dor {Postr and INV} For the exception clause: {??? } rescuer {??? } Should it be lazy? Weakest? Strongest? The stronger the precond, the easier the job

50 Quiz answers 50 For the normal body: {INV and Prer} dor {Postr and INV} For the rescue clause: {True} rescuer {INV} For the retry-introducing rescue clause: {True} retryr {INV and Prer }

51 Separation of roles 51 Normal body: ensure the routine s contract; not directly to handle exceptions Rescue clause: handle exceptions, returning control to the body or (in the failure case) to the caller; not to ensure the contract.

52 If no exception clause (2) 52 Absence of a rescue clause is equivalent to a default rescue clause: f (...) is do... end is an abbreviation for f (...) is do... rescue end default_rescue The task of default_rescue is to restore the invariant.

53 For finer-grain exception handling 53 Use class EXCEPTIONS from the Kernel Library. Some features: exception (code of last exception that was triggered). assertion_violation, etc. raise ( exception_name )

54 小结 54 使用 Eiffel Exception 机制来构造 Robust 的软件 使用 Java/C++/C# Exception 机制来构造 Robust Correct Easy-to-Read

55 作业 55 解释 checked exception, unchecked exception 和 error 三者的定义以及使用的区别 从 DbC 的角度看,Java 方法声明中的 throws 子句反映了类 (supplier ) 和其使用者 (client) 之间的怎样的权利 / 义务关系?Java 子类若重定义父类中的方法, 其 throws 的异常有何限制? 用 DbC 的 Contract 继承原则解释这个限制 4 月 11 日晚上 24:00 前 提交至 OODClass@163.com 邮件附件以及主题命名形式, 第四次作业 - 学号 - 姓名.XXX

56 Java Exception 56 Java Exception 机制的不当使用 : 引自网络论坛 :

57 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ 13 out.close(); 14 } 15 catch(exception ex) // ⑵ 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } 57

58 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ (1) 丢弃异常! 13 out.close(); 14 } 15 catch(exception ex) // ⑵ 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } 58

59 Anti-pattern 59 丢弃异常 - 改正方案 1. 处理异常 针对该异常采取一些行动, 例如修正问题 提醒某个人或进行其他一些处理, 要根据具体的情形确定应该采取的动作 再次说明, 调用 printstacktrace 算不上已经 处理好了异常 2. 重新抛出异常 处理异常的代码在分析异常之后, 认为自己不能处理它, 重新抛出异常也不失为一种选择 3. 把该异常转换成另一种异常 大多数情况下, 这是指把一个低级的异常转换成应用级的异常 ( 其含义更容易被用户了解的异常 ) 4. 不要捕获异常 结论一 : 既然捕获了异常, 就要对它进行适当的处理 不要捕获异常之后又把它丢弃, 不予理睬

60 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ (2) 不指定具体的异常! 13 out.close(); 14 } 15 catch(exception ex) // ⑵ 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } 60

61 Anti-pattern 61 不指定具体的异常 改正方案 找出真正的问题所在,IOException? SQLException? 结论二 : 在 catch 语句中尽可能指定具体的异常类型, 必要时使用多个 catch 不要试图处理所有可能出现的异常

62 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ 13 out.close(); 14 } 15 catch(exception ex) // ⑵ (3) 占用资源不释放! 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } 62

63 Anti-pattern 63 占用资源不释放 改正方案 异常改变了程序正常的执行流程 如果程序用到了文件 Socket JDBC 连接之类的资源, 即使遇到了异常, 也要正确释放占用的资源 try/catch/finally 结论三 : 保证所有资源都被正确释放 充分运用 finally 关键词

64 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ 13 out.close(); 14 } 15 catch(exception ex) // ⑵ 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } (4) 不说明异常的详细信息 64

65 Anti-pattern 65 不说明异常的详细信息 改正方案 printstacktrace 的堆栈跟踪功能显示出程序运行到当前类的执行流程, 但只提供了一些最基本的信息, 未能说明实际导致错误的原因, 同时也不易解读 结论四 : 在异常处理模块中提供适量的错误原因信息, 例如当前正在执行的类 方法和其他状态信息, 包括以一种更适合阅读的方式整理和组织 printstacktrace 提供的信息使其易于理解和阅读

66 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ 13 out.close(); 14 } 15 catch(exception ex) // ⑵ 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } (5) 过于庞大的 try 块 66

67 Anti-pattern 67 过于庞大的 try 块 改正方案 庞大的原因? 偷懒? 结论五 : 分离各个可能出现异常的段落并分别捕获其异常, 尽量减小 try 块的体积

68 1 OutputStreamWriter out =... 2 java.sql.connection conn =... 3 try { // ⑸ 4 Statement stat = conn.createstatement(); 5 ResultSet rs = stat.executequery( 6 "select uid, name from user"); 7 while (rs.next()) 8 { 9 out.println("id:" + rs.getstring("uid") // ⑹ 10 ", 姓名 :" + rs.getstring("name")); 11 } 12 conn.close(); // ⑶ 13 out.close(); 14 } 15 catch(exception ex) // ⑵ 16 { 17 ex.printstacktrace(); //⑴,⑷ 18 } 如果循环中出现异常, 如何? (6) 输出数据不完整 68

69 Anti-pattern 69 输出数据不完整 改正方案 对于有些系统来说, 数据不完整可能比系统停止运行带来更大的损失 方案 1: 向输出设备写一些信息, 声明数据的不完整性 ; 方案 2: 先缓冲要输出的数据, 准备好全部数据之后再一次性输出 结论六 : 全面考虑可能出现的异常以及这些异常对执行流程的影响

70 OutputStreamWriter out =... java.sql.connection conn =... try { Statement stat = conn.createstatement(); ResultSet rs = stat.executequery( "select uid, name from user"); while (rs.next()) { out.println("id:" + rs.getstring("uid") + ", 姓名 : " + rs.getstring("name")); } } catch(sqlexception sqlex) { out.println(" 警告 : 数据不完整 "); throw new ApplicationException( " 读取数据时出现 SQL 错误 ", sqlex); } catch(ioexception ioex) { throw new ApplicationException( " 写入数据时出现 IO 错误 ", ioex); } 70 finally { if (conn!= null) { try { conn.close(); } catch(sqlexception sqlex2) { System.err(this.getClass().getName() + ".mymethod - 不能关闭数据库连接 : " + sqlex2.tostring()); } } if (out!= null) { try { out.close(); } catch(ioexception ioex2) { System.err(this.getClass().getName() + ".mymethod - 不能关闭输出文件 " + ioex2.tostring()); } } }

71 Effective Java Exceptions 71 高效 Java 异常处理机制 : 引自 <<Effective Java TM 语法 词汇 用法 second edition>>(joshua Bloch) 高效 灵活 鲁棒 可重用的程序

72 9 大原则 72 Use exceptions only for exceptional conditions 只针对不正常的条件才使用异常 //Horrible abuse of exceptions. Don t ever do this! try{ int i = 0; while(true) range[i++].climb(); }catch(arrayindexoutofboundsexception e) { } 通过 ArrayIndexOutOfBoundsException 的手段来达到终止无限循环的目的 for (Mountain m : range) m.climb();

73 9 大原则 Use checked exceptions for recoverable conditions and runtime exceptions for programming errors 对于可恢复的条件使用被检查的异常, 对于程序错误使用运行时异常

74 9 大原则 Avoid unnecessary use of checked exceptions 避免不必要地使用被检查的异常

75 9 大原则 75 Favor the use of standard exceptions 尽量使用标准的异常 Throw exceptions appropriate to the abstraction 抛出的异常要适合于相应的抽象 Document all exceptions thrown by each method 每个方法抛出的异常都要有文档

76 9 大原则 76 Include failure-capture information in detail messages 在细节消息中包含失败 捕获信息 Strive for failure atomicity 努力使失败保持原子性 Don t ignore exceptions 不要忽略异常

77 Keep in mind 77 勿以恶小而为之, 勿以善小而不为

chp6.ppt

chp6.ppt Java 软 件 设 计 基 础 6. 异 常 处 理 编 程 时 会 遇 到 如 下 三 种 错 误 : 语 法 错 误 (syntax error) 没 有 遵 循 语 言 的 规 则, 出 现 语 法 格 式 上 的 错 误, 可 被 编 译 器 发 现 并 易 于 纠 正 ; 逻 辑 错 误 (logic error) 即 我 们 常 说 的 bug, 意 指 编 写 的 代 码 在 执 行

More information

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63>

<4D6963726F736F667420576F7264202D2032303130C4EAC0EDB9A4C0E04142BCB6D4C4B6C1C5D0B6CFC0FDCCE2BEABD1A15F325F2E646F63> 2010 年 理 工 类 AB 级 阅 读 判 断 例 题 精 选 (2) Computer mouse How does the mouse work? We have to start at the bottom, so think upside down for now. It all starts with mouse ball. As the mouse ball in the bottom

More information

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡

4. 每 组 学 生 将 写 有 习 语 和 含 义 的 两 组 卡 片 分 别 洗 牌, 将 顺 序 打 乱, 然 后 将 两 组 卡 片 反 面 朝 上 置 于 课 桌 上 5. 学 生 依 次 从 两 组 卡 片 中 各 抽 取 一 张, 展 示 给 小 组 成 员, 并 大 声 朗 读 卡 Tips of the Week 课 堂 上 的 英 语 习 语 教 学 ( 二 ) 2015-04-19 吴 倩 MarriottCHEI 大 家 好! 欢 迎 来 到 Tips of the Week! 这 周 我 想 和 老 师 们 分 享 另 外 两 个 课 堂 上 可 以 开 展 的 英 语 习 语 教 学 活 动 其 中 一 个 活 动 是 一 个 充 满 趣 味 的 游 戏, 另 外

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

Lorem ipsum dolor sit amet, consectetuer adipiscing elit

Lorem ipsum dolor sit amet, consectetuer adipiscing elit English for Study in Australia 留 学 澳 洲 英 语 讲 座 Lesson 3: Make yourself at home 第 三 课 : 宾 至 如 归 L1 Male: 各 位 朋 友 好, 欢 迎 您 收 听 留 学 澳 洲 英 语 讲 座 节 目, 我 是 澳 大 利 亚 澳 洲 广 播 电 台 的 节 目 主 持 人 陈 昊 L1 Female: 各 位

More information

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish

Microsoft Word - TIP006SCH Uni-edit Writing Tip - Presentperfecttenseandpasttenseinyourintroduction readytopublish 我 难 度 : 高 级 对 们 现 不 在 知 仍 道 有 听 影 过 响 多 少 那 次 么 : 研 英 究 过 文 论 去 写 文 时 作 的 表 技 引 示 巧 言 事 : 部 情 引 分 发 言 该 生 使 在 中 用 过 去, 而 现 在 完 成 时 仅 表 示 事 情 发 生 在 过 去, 并 的 哪 现 种 在 时 完 态 成 呢 时? 和 难 过 道 去 不 时 相 关? 是 所 有

More information

Microsoft Word - 11月電子報1130.doc

Microsoft Word - 11月電子報1130.doc 發 行 人 : 楊 進 成 出 刊 日 期 2008 年 12 月 1 日, 第 38 期 第 1 頁 / 共 16 頁 封 面 圖 話 來 來 來, 來 葳 格 ; 玩 玩 玩, 玩 數 學 在 11 月 17 到 21 日 這 5 天 裡 每 天 一 個 題 目, 孩 子 們 依 據 不 同 年 段, 尋 找 屬 於 自 己 的 解 答, 這 些 數 學 題 目 和 校 園 情 境 緊 緊 結

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

Microsoft Word doc

Microsoft Word doc 中 考 英 语 科 考 试 标 准 及 试 卷 结 构 技 术 指 标 构 想 1 王 后 雄 童 祥 林 ( 华 中 师 范 大 学 考 试 研 究 院, 武 汉,430079, 湖 北 ) 提 要 : 本 文 从 结 构 模 式 内 容 要 素 能 力 要 素 题 型 要 素 难 度 要 素 分 数 要 素 时 限 要 素 等 方 面 细 致 分 析 了 中 考 英 语 科 试 卷 结 构 的

More information

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for

C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for Doreen Virtue, Ph.D. Charles Virtue C o n t e n t s...7... 15 1. Acceptance... 17 2. Allow Love... 19 3. Apologize... 21 4. Archangel Metatron... 23 5. Archangel Michael... 25 6. Ask for a Sign... 27 7.

More information

BUILDING THE BEST MARKETING BUDGET FOR TODAY S B2B ENVIRONMENT For most marketers, budgeting and planning for the next year is a substantial undertaki

BUILDING THE BEST MARKETING BUDGET FOR TODAY S B2B ENVIRONMENT For most marketers, budgeting and planning for the next year is a substantial undertaki Building the Best Marketing Budget for Today s B2B Environment BUILDING THE BEST MARKETING BUDGET FOR TODAY S B2B ENVIRONMENT For most marketers, budgeting and planning for the next year is a substantial

More information

徐汇教育214/3月刊 重 点 关 注 高中生异性交往的小团体辅导 及效果研究 颜静红 摘 要 采用人际关系综合诊断量表 郑日昌编制并 与同性交往所不能带来的好处 带来稳定感和安全感 能 修订 对我校高一学生进行问卷测量 实验组前后测 在 够度过更快乐的时光 获得与别人友好相处的经验 宽容 量表总分和第 4 项因子分 异性交往困扰 上均有显著差 大度和理解力得到发展 得到掌握社会技术的机会 得到 异

More information

參 加 第 二 次 pesta 的 我, 在 是 次 交 流 營 上 除 了, 與 兩 年 沒 有 見 面 的 朋 友 再 次 相 聚, 加 深 友 誼 外, 更 獲 得 與 上 屆 不 同 的 體 驗 和 經 歴 比 較 起 香 港 和 馬 來 西 亞 的 活 動 模 式, 確 是 有 不 同 特

參 加 第 二 次 pesta 的 我, 在 是 次 交 流 營 上 除 了, 與 兩 年 沒 有 見 面 的 朋 友 再 次 相 聚, 加 深 友 誼 外, 更 獲 得 與 上 屆 不 同 的 體 驗 和 經 歴 比 較 起 香 港 和 馬 來 西 亞 的 活 動 模 式, 確 是 有 不 同 特 WE ARE BOY S BRIGADE 參 加 第 二 次 pesta 的 我, 在 是 次 交 流 營 上 除 了, 與 兩 年 沒 有 見 面 的 朋 友 再 次 相 聚, 加 深 友 誼 外, 更 獲 得 與 上 屆 不 同 的 體 驗 和 經 歴 比 較 起 香 港 和 馬 來 西 亞 的 活 動 模 式, 確 是 有 不 同 特 別 之 處 如 控 制 時 間 及 人 流 方 面, 香

More information

Microsoft Word - 第四組心得.doc

Microsoft Word - 第四組心得.doc 徐 婉 真 這 四 天 的 綠 島 人 權 體 驗 營 令 我 印 象 深 刻, 尤 其 第 三 天 晚 上 吳 豪 人 教 授 的 那 堂 課, 他 讓 我 聽 到 不 同 於 以 往 的 正 義 之 聲 轉 型 正 義, 透 過 他 幽 默 熱 情 的 語 調 激 起 了 我 對 政 治 的 興 趣, 願 意 在 未 來 多 關 心 社 會 多 了 解 政 治 第 一 天 抵 達 綠 島 不 久,

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63> 運 用 多 媒 體 製 作 華 文 補 充 教 材 江 惜 美 銘 傳 大 學 應 用 中 文 系 chm248@gmail.com 摘 要 : 本 文 旨 在 探 究 如 何 運 用 多 媒 體, 結 合 文 字 聲 音 圖 畫, 製 作 華 文 補 充 教 材 當 我 們 在 進 行 華 文 教 學 時, 往 往 必 須 透 過 教 案 設 計, 並 製 作 補 充 教 材, 方 能 使 教 學

More information

2009.05

2009.05 2009 05 2009.05 2009.05 璆 2009.05 1 亿 平 方 米 6 万 套 10 名 20 亿 元 5 个 月 30 万 亿 60 万 平 方 米 Data 围 观 CCDI 公 司 内 刊 企 业 版 P08 围 观 CCDI 管 理 学 上 有 句 名 言 : 做 正 确 的 事, 比 正 确 地 做 事 更 重 要 方 向 的 对 错 于 大 局 的 意 义 而 言,

More information

Lorem ipsum dolor sit amet, consectetuer adipiscing elit

Lorem ipsum dolor sit amet, consectetuer adipiscing elit 留 学 澳 洲 英 语 讲 座 English for Study in Australia 第 十 三 课 : 与 同 学 一 起 做 功 课 Lesson 13: Working together L1 Male 各 位 听 众 朋 友 好, 我 是 澳 大 利 亚 澳 洲 广 播 电 台 的 节 目 主 持 人 陈 昊 L1 Female 各 位 好, 我 是 马 健 媛 L1 Male L1

More information

BC04 Module_antenna__ doc

BC04 Module_antenna__ doc http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 1 of 10 http://www.infobluetooth.com TEL:+86-23-68798999 Fax: +86-23-68889515 Page 2 of 10 http://www.infobluetooth.com TEL:+86-23-68798999

More information

Windows XP

Windows XP Windows XP What is Windows XP Windows is an Operating System An Operating System is the program that controls the hardware of your computer, and gives you an interface that allows you and other programs

More information

[ 13 年 12 月 06 日, 下 午 6 点 24 分 ] Intel Hosts 新 加 入 的 同 学 们, 快 去 听 听 在 线 宣 讲 会 哦, 同 时 完 成 页 面 下 方 有 奖 调 查, 就 有 资 格 参 与 大 奖 抽 取 啦! [ 13 年 12 月 06 日, 下 午

[ 13 年 12 月 06 日, 下 午 6 点 24 分 ] Intel Hosts 新 加 入 的 同 学 们, 快 去 听 听 在 线 宣 讲 会 哦, 同 时 完 成 页 面 下 方 有 奖 调 查, 就 有 资 格 参 与 大 奖 抽 取 啦! [ 13 年 12 月 06 日, 下 午 China Career Fair: To Know a Different Intel Time Participants Chat Transcript [ 13 年 12 月 06 日, 下 午 6 点 00 分 ] Participant Hi [ 13 年 12 月 06 日, 下 午 6 点 00 分 ] Intel Hosts 大 家 好! [ 13 年 12 月 06 日, 下 午

More information

國立中山大學學位論文典藏

國立中山大學學位論文典藏 I II III IV The theories of leadership seldom explain the difference of male leaders and female leaders. Instead of the assumption that the leaders leading traits and leading styles of two sexes are the

More information

2-7.FIT)

2-7.FIT) 文 化 园 地 8 2009 年 8 月 18 日 星 期 二 E-mail:liuliyuan@qunlitimes.com 群 立 文 化 感 受 今 天 你 开 心 了 吗? 周 传 喜 群 雄 争 立 竞 争 意 识 ; 傲 立 群 雄 奋 斗 目 标, 这 几 句 话 一 直 是 群 立 的 文 化 和 方 针, 也 同 样 是 我 很 喜 欢 的 座 右 铭 我 想 这 几 句 话 生

More information

可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目 的 地 後

可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目 的 地 後 郭家朗 許鈞嵐 劉振迪 樊偉賢 林洛鋒 第 36 期 出版日期 28-3-2014 出版日期 28-3-2014 可 愛 的 動 物 小 五 雷 雅 理 第 一 次 小 六 甲 黃 駿 朗 今 年 暑 假 發 生 了 一 件 令 人 非 常 難 忘 的 事 情, 我 第 一 次 參 加 宿 營, 離 開 父 母, 自 己 照 顧 自 己, 出 發 前, 我 的 心 情 十 分 緊 張 當 到 達 目

More information

高中英文科教師甄試心得

高中英文科教師甄試心得 高 中 英 文 科 教 師 甄 試 心 得 英 語 學 系 碩 士 班 林 俊 呈 高 雄 市 立 高 雄 高 級 中 學 今 年 第 一 次 參 加 教 師 甄 試, 能 夠 在 尚 未 服 兵 役 前 便 考 上 高 雄 市 立 高 雄 高 級 中 學 專 任 教 師, 自 己 覺 得 很 意 外, 也 很 幸 運 考 上 後 不 久 在 與 雄 中 校 長 的 會 談 中, 校 長 的 一 句

More information

99 學年度班群總介紹 第 370 期 班群總導 陳怡靜 G45 班群總導 陳怡靜(河馬) A 家 惠如 家浩 T 格 宜蓁 小 霖 怡 家 M 璇 均 蓁 雴 家 數學領域 珈玲 國燈 370-2 英領域 Kent

99 學年度班群總介紹 第 370 期 班群總導 陳怡靜 G45 班群總導 陳怡靜(河馬) A 家 惠如 家浩 T 格 宜蓁 小 霖 怡 家 M 璇 均 蓁 雴 家 數學領域 珈玲 國燈 370-2 英領域 Kent 2010 年 8 月 27 日 出 刊 精 緻 教 育 宜 蘭 縣 公 辦 民 營 人 國 民 中 小 學 財 團 法 人 人 適 性 教 育 基 金 會 承 辦 地 址 : 宜 蘭 縣 26141 頭 城 鎮 雅 路 150 號 (03)977-3396 http://www.jwps.ilc.edu.tw 健 康 VS. 學 習 各 位 合 夥 人 其 實 都 知 道, 我 是 個 胖 子, 而

More information

The Development of Color Constancy and Calibration System

The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System The Development of Color Constancy and Calibration System LabVIEW CCD BMP ii Abstract The modern technologies develop more and more faster, and

More information

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d

Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies to all d WeChat Search Visual Identity Guidelines WEDESIGN 2018. 04 Preface This guide is intended to standardize the use of the WeChat brand and ensure the brand's integrity and consistency. The guide applies

More information

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月

硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 硕 士 学 位 论 文 论 文 题 目 : 北 岛 诗 歌 创 作 的 双 重 困 境 专 业 名 称 : 中 国 现 当 代 文 学 研 究 方 向 : 中 国 新 诗 研 究 论 文 作 者 : 奚 荣 荣 指 导 老 师 : 姜 玉 琴 2014 年 12 月 致 谢 文 学 是 我 们 人 类 宝 贵 的 精 神 财 富 两 年 半 的 硕 士 学 习 让 我 进 一 步 接 近 文 学,

More information

1.ai

1.ai HDMI camera ARTRAY CO,. LTD Introduction Thank you for purchasing the ARTCAM HDMI camera series. This manual shows the direction how to use the viewer software. Please refer other instructions or contact

More information

epub83-1

epub83-1 C++Builder 1 C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r C + + B u i l d e r 1.1 1.1.1 1-1 1. 1-1 1 2. 1-1 2 A c c e s s P a r a d o x Visual FoxPro 3. / C / S 2 C + + B u i l d e r / C

More information

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2

2005 5,,,,,,,,,,,,,,,,, , , 2174, 7014 %, % 4, 1961, ,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 3,,,,,, 1872,,,, 3 2004 ( 04BZS030),, 1 2005 5,,,,,,,,,,,,,,,,, 1928 716,1935 6 2682 1928 2 1935 6 1966, 2174, 7014 %, 94137 % 4, 1961, 59 1929,30, 30,, 4,1976,627,,,,, 3 (1993,12 ),, 2 , :,,,, :,,,,,,

More information

第六章

第六章 Reflection and Serving Learning 長 庚 科 技 大 學 護 理 系 劉 杏 元 一 服 務 學 習 為 何 要 反 思 All those things that we had to do for the service-learning, each one, successively helped me pull together what I d learned.

More information

Microsoft Word - template.doc

Microsoft Word - template.doc HGC efax Service User Guide I. Getting Started Page 1 II. Fax Forward Page 2 4 III. Web Viewing Page 5 7 IV. General Management Page 8 12 V. Help Desk Page 13 VI. Logout Page 13 Page 0 I. Getting Started

More information

A Community Guide to Environmental Health

A Community Guide to Environmental Health 102 7 建 造 厕 所 本 章 内 容 宣 传 推 广 卫 生 设 施 104 人 们 需 要 什 么 样 的 厕 所 105 规 划 厕 所 106 男 女 对 厕 所 的 不 同 需 求 108 活 动 : 给 妇 女 带 来 方 便 110 让 厕 所 更 便 于 使 用 111 儿 童 厕 所 112 应 急 厕 所 113 城 镇 公 共 卫 生 设 施 114 故 事 : 城 市 社

More information

Microsoft Word - 武術合併

Microsoft Word - 武術合併 11/13 醫 學 系 一 年 級 張 雲 筑 武 術 課 開 始, 老 師 並 不 急 著 帶 我 們 舞 弄 起 來, 而 是 解 說 著 支 配 氣 的 流 動 為 何 構 成 中 國 武 術 的 追 求 目 標 武 術, 名 之 為 武 恐 怕 與 其 原 本 的 精 義 有 所 偏 差 其 實 武 術 是 為 了 讓 學 習 者 能 夠 掌 握 身 體, 保 養 身 體 而 發 展, 並

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

untitled

untitled Co-integration and VECM Yi-Nung Yang CYCU, Taiwan May, 2012 不 列 1 Learning objectives Integrated variables Co-integration Vector Error correction model (VECM) Engle-Granger 2-step co-integration test Johansen

More information

UTI (Urinary Tract Infection) - Traditional Chinese

UTI (Urinary Tract Infection) - Traditional Chinese UTI (Urinary Tract Infection) Urinary tract infection, also called UTI, is an infection of the bladder or kidneys. Urethra Kidney Ureters Bladder Vagina Kidney Ureters Bladder Urethra Penis Causes UTI

More information

穨control.PDF

穨control.PDF TCP congestion control yhmiu Outline Congestion control algorithms Purpose of RFC2581 Purpose of RFC2582 TCP SS-DR 1998 TCP Extensions RFC1072 1988 SACK RFC2018 1996 FACK 1996 Rate-Halving 1997 OldTahoe

More information

Microsoft PowerPoint _代工實例-1

Microsoft PowerPoint _代工實例-1 4302 動態光散射儀 (Dynamic Light Scattering) 代工實例與結果解析 生醫暨非破壞性分析團隊 2016.10 updated Which Size to Measure? Diameter Many techniques make the useful and convenient assumption that every particle is a sphere. The

More information

软件测试(TA07)第一学期考试

软件测试(TA07)第一学期考试 一 判 断 题 ( 每 题 1 分, 正 确 的, 错 误 的,20 道 ) 1. 软 件 测 试 按 照 测 试 过 程 分 类 为 黑 盒 白 盒 测 试 ( ) 2. 在 设 计 测 试 用 例 时, 应 包 括 合 理 的 输 入 条 件 和 不 合 理 的 输 入 条 件 ( ) 3. 集 成 测 试 计 划 在 需 求 分 析 阶 段 末 提 交 ( ) 4. 单 元 测 试 属 于 动

More information

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university

Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Some experiences in working with Madagascar: installa7on & development Tengfei Wang, Peng Zou Tongji university Map data @ Google Reproducible research in Madagascar How to conduct a successful installation

More information

3.1 num = 3 ch = 'C' 2

3.1 num = 3 ch = 'C' 2 Java 1 3.1 num = 3 ch = 'C' 2 final 3.1 final : final final double PI=3.1415926; 3 3.2 4 int 3.2 (long int) (int) (short int) (byte) short sum; // sum 5 3.2 Java int long num=32967359818l; C:\java\app3_2.java:6:

More information

Microsoft PowerPoint - STU_EC_Ch08.ppt

Microsoft PowerPoint - STU_EC_Ch08.ppt 樹德科技大學資訊工程系 Chapter 8: Counters Shi-Huang Chen Fall 2010 1 Outline Asynchronous Counter Operation Synchronous Counter Operation Up/Down Synchronous Counters Design of Synchronous Counters Cascaded Counters

More information

中國文化大學政治學研究所

中國文化大學政治學研究所 中 國 文 化 大 學 社 會 科 學 院 政 治 學 系 碩 士 論 文 Department of Political Science College of Social Sciences Chinese Culture University Master Thesis 台 灣 中 小 企 業 赴 大 陸 投 資 風 險 及 其 因 應 之 道 Investment Risks and its

More information

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466>

< F5FB77CB6BCBD672028B0B6A46AABE4B751A874A643295F5FB8D5C5AA28A668ADB6292E706466> A A A A A i A A A A A A A ii Introduction to the Chinese Editions of Great Ideas Penguin s Great Ideas series began publication in 2004. A somewhat smaller list is published in the USA and a related, even

More information

蔡 氏 族 譜 序 2

蔡 氏 族 譜 序 2 1 蔡 氏 族 譜 Highlights with characters are Uncle Mike s corrections. Missing or corrected characters are found on pages 9, 19, 28, 34, 44. 蔡 氏 族 譜 序 2 3 福 建 仙 遊 赤 湖 蔡 氏 宗 譜 序 蔡 氏 之 先 出 自 姬 姓 周 文 王 第 五 子

More information

ENGG1410-F Tutorial 6

ENGG1410-F Tutorial 6 Jianwen Zhao Department of Computer Science and Engineering The Chinese University of Hong Kong 1/16 Problem 1. Matrix Diagonalization Diagonalize the following matrix: A = [ ] 1 2 4 3 2/16 Solution The

More information

Microsoft Word - Final Exam Review Packet.docx

Microsoft Word - Final Exam Review Packet.docx Do you know these words?... 3.1 3.5 Can you do the following?... Ask for and say the date. Use the adverbial of time correctly. Use Use to ask a tag question. Form a yes/no question with the verb / not

More information

目 錄 實 施 計 畫 1 專 題 演 講 因 應 十 二 年 國 民 基 本 教 育 課 程 綱 要 學 校 本 位 課 程 的 整 體 布 局 A-1 推 動 十 二 年 國 民 基 本 教 育 課 程 綱 要 相 關 配 套 措 施 A-10 分 組 研 討 法 規 研 修 B-1 課 程 教

目 錄 實 施 計 畫 1 專 題 演 講 因 應 十 二 年 國 民 基 本 教 育 課 程 綱 要 學 校 本 位 課 程 的 整 體 布 局 A-1 推 動 十 二 年 國 民 基 本 教 育 課 程 綱 要 相 關 配 套 措 施 A-10 分 組 研 討 法 規 研 修 B-1 課 程 教 高 級 中 等 學 校 學 科 中 心 105 年 度 研 討 會 會 議 手 冊 時 間 :105 年 5 月 18-19 日 地 點 : 明 湖 水 漾 會 館 ( 苗 栗 縣 頭 屋 鄉 ) 指 導 單 位 : 教 育 部 國 民 及 學 前 教 育 署 主 辦 單 位 : 普 通 型 高 級 中 等 學 校 課 程 推 動 工 作 圈 ( 國 立 宜 蘭 高 級 中 學 ) 協 辦 單 位

More information

Your Field Guide to More Effective Global Video Conferencing As a global expert in video conferencing, and a geographically dispersed company that uses video conferencing in virtually every aspect of its

More information

TA-research-stats.key

TA-research-stats.key Research Analysis MICHAEL BERNSTEIN CS 376 Last time What is a statistical test? Chi-square t-test Paired t-test 2 Today ANOVA Posthoc tests Two-way ANOVA Repeated measures ANOVA 3 Recall: hypothesis testing

More information

東莞工商總會劉百樂中學

東莞工商總會劉百樂中學 /2015/ 頁 (2015 年 版 ) 目 錄 : 中 文 1 English Language 2-3 數 學 4-5 通 識 教 育 6 物 理 7 化 學 8 生 物 9 組 合 科 學 ( 化 學 ) 10 組 合 科 學 ( 生 物 ) 11 企 業 會 計 及 財 務 概 論 12 中 國 歷 史 13 歷 史 14 地 理 15 經 濟 16 資 訊 及 通 訊 科 技 17 視 覺

More information

莊 子

莊 子 作 家 追 踪 莊 子 鄧 城 鋒 博 士 2012 年 5 月 5 日 1 1. 莊 子 與 莊 子 2. 逍 遙 遊 要 義 3. 齊 物 養 生 要 義 4. 莊 子 與 文 學 2 莊 子 ( 前 369?- 前 286?) 莊 子 之 家 世 及 社 會 地 位 有 書 可 讀, 不 耕 不 役 其 學 無 所 不 窺, 不 求 實 用 沒 落 貴 族 消 極 厭 世, 不 求 上 進 莊

More information

星河33期.FIT)

星河33期.FIT) 大 事 记 渊 2011.11 要 要 2011.12 冤 1 尧 11 月 25 日 下 午 袁 白 银 区 首 届 中 小 学 校 长 论 坛 在 我 校 举 行 遥 2 尧 在 甘 肃 省 2011 年 野 十 一 五 冶 规 划 课 题 集 中 鉴 定 中 袁 我 校 教 师 郝 香 梅 负 责 的 课 题 叶 英 语 课 堂 的 艺 术 性 研 究 曳 袁 张 宏 林 负 责 的 叶 白

More information

K301Q-D VRT中英文说明书141009

K301Q-D VRT中英文说明书141009 THE INSTALLING INSTRUCTION FOR CONCEALED TANK Important instuction:.. Please confirm the structure and shape before installing the toilet bowl. Meanwhile measure the exact size H between outfall and infall

More information

(Microsoft Word - 10\246~\253\327\262\304\244@\264\301\256\325\260T_Version4)

(Microsoft Word - 10\246~\253\327\262\304\244@\264\301\256\325\260T_Version4) 聖 公 會 仁 立 紀 念 小 學 聖 公 會 仁 立 紀 念 小 學 校 園 通 訊 2010 年 度 第 一 期 第 1 頁 \\\\ 校 園 通 訊 2010-2011 年 度 第 一 期 鄭 秀 薇 總 校 長 在 日 本, 有 一 個 傳 說 故 事 是 這 樣 說 的 : 有 一 對 仁 慈 的 老 夫 婦, 生 活 窮 困, 靠 賣 木 柴 過 活 一 天 老 人 在 同 情 心 的

More information

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63>

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63> 論 史 記 五 帝 本 紀 首 黃 帝 之 意 義 林 立 仁 明 志 科 技 大 學 通 識 教 育 中 心 副 教 授 摘 要 太 史 公 司 馬 遷 承 父 著 史 遺 志, 並 以 身 膺 五 百 年 大 運, 上 繼 孔 子 春 秋 之 史 學 文 化 道 統 為 其 職 志, 著 史 記 欲 達 究 天 人 之 際, 通 古 今 之 變, 成 一 家 之 言 之 境 界 然 史 記 百

More information

encourages children to develop rich emotions through close contact with surrounding nature. It also cultivates a foundation for children s balanced de

encourages children to develop rich emotions through close contact with surrounding nature. It also cultivates a foundation for children s balanced de * ** *** **** The Instruction of a Sense of Seasons in the Field Environment through the Comparison of Kindergartens in Germany, Australia and Japan Kazuyuki YOKOIKimihiko SAITOKatsushi ONO Koichi EBIHARA

More information

2. 佔 中 對 香 港 帶 來 以 下 影 響 : 正 面 影 響 - 喚 起 市 民 對 人 權 及 ( 專 制 ) 管 治 的 關 注 和 討 論 o 香 港 市 民 總 不 能 一 味 認 命, 接 受 以 後 受 制 於 中 央, 沒 有 機 會 選 出 心 中 的 理 想 特 首 o 一

2. 佔 中 對 香 港 帶 來 以 下 影 響 : 正 面 影 響 - 喚 起 市 民 對 人 權 及 ( 專 制 ) 管 治 的 關 注 和 討 論 o 香 港 市 民 總 不 能 一 味 認 命, 接 受 以 後 受 制 於 中 央, 沒 有 機 會 選 出 心 中 的 理 想 特 首 o 一 220 參 考 答 案 專 題 1. 公 民 抗 命 與 革 命 的 異 同 如 下 : 公 民 抗 命 革 命 相 同 之 處 目 的 兩 種 行 動 都 是 為 了 抗 拒 當 權 政 府 不 受 歡 迎 的 決 定 及 政 策 方 法 兩 者 都 是 在 嘗 試 其 他 合 法 的 抗 爭 行 動 後, 無 可 奈 何 的 最 後 手 段 不 同 之 處 目 的 只 是 令 政 府 的 某 些

More information

LH_Series_Rev2014.pdf

LH_Series_Rev2014.pdf REMINDERS Product information in this catalog is as of October 2013. All of the contents specified herein are subject to change without notice due to technical improvements, etc. Therefore, please check

More information

穨6街舞對抗中正紀念堂_林伯勳張金鶚_.PDF

穨6街舞對抗中正紀念堂_林伯勳張金鶚_.PDF ( ) 115 115140 Journal of City and Planning(2002) Vol.29, No.1, pp.115140 90 10 26 91 05 20 2 3 --- ( ) 1. 2. mag.ryan@msa.hinet.net 3. jachang@nccu.edu.tw 1018-1067/02 2002 Chinese Institute of Urban

More information

PowerPoint Presentation

PowerPoint Presentation Decision analysis 量化決策分析方法專論 2011/5/26 1 Problem formulation- states of nature In the decision analysis, decision alternatives are referred to as chance events. The possible outcomes for a chance event

More information

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D

(baking powder) 1 ( ) ( ) 1 10g g (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal D ( ) 4 1 1 1 145 1 110 1 (baking powder) 1 ( ) ( ) 1 10g 1 1 2.5g 1 1 1 1 60 10 (two level design, D-optimal) 32 1/2 fraction Two Level Fractional Factorial Design D-Optimal Design 1. 60 120 2. 3. 40 10

More information

2015 Chinese FL Written examination

2015 Chinese FL Written examination Victorian Certificate of Education 2015 SUPERVISOR TO ATTACH PROCESSING LABEL HERE Letter STUDENT NUMBER CHINESE FIRST LANGUAGE Written examination Monday 16 November 2015 Reading time: 11.45 am to 12.00

More information

9 * B0-0 * 16ZD097 10 2018 5 3 11 117 2011 349 120 121 123 46 38-39 12 2018 5 23 92 939 536 2009 98 1844 13 1 25 926-927 3 304 305-306 1 23 95 14 2018 5 25 926-927 122 1 1 self-ownership 15 22 119 a b

More information

UDC The Policy Risk and Prevention in Chinese Securities Market

UDC The Policy Risk and Prevention in Chinese Securities Market 10384 200106013 UDC The Policy Risk and Prevention in Chinese Securities Market 2004 5 2004 2004 2004 5 : Abstract Many scholars have discussed the question about the influence of the policy on Chinese

More information

前 言 一 場 交 換 學 生 的 夢, 夢 想 不 只 是 敢 夢, 而 是 也 要 敢 去 實 踐 為 期 一 年 的 交 換 學 生 生 涯, 說 長 不 長, 說 短 不 短 再 長 的 路, 一 步 步 也 能 走 完 ; 再 短 的 路, 不 踏 出 起 步 就 無 法 到 達 這 次

前 言 一 場 交 換 學 生 的 夢, 夢 想 不 只 是 敢 夢, 而 是 也 要 敢 去 實 踐 為 期 一 年 的 交 換 學 生 生 涯, 說 長 不 長, 說 短 不 短 再 長 的 路, 一 步 步 也 能 走 完 ; 再 短 的 路, 不 踏 出 起 步 就 無 法 到 達 這 次 壹 教 育 部 獎 助 國 內 大 學 校 院 選 送 優 秀 學 生 出 國 研 修 之 留 學 生 成 果 報 告 書 奧 地 利 約 翰 克 卜 勒 大 學 (JKU) 留 學 心 得 原 就 讀 學 校 / 科 系 / 年 級 : 長 榮 大 學 / 財 務 金 融 學 系 / 四 年 級 獲 獎 生 姓 名 : 賴 欣 怡 研 修 國 家 : 奧 地 利 研 修 學 校 : 約 翰 克 普

More information

考試學刊第10期-內文.indd

考試學刊第10期-內文.indd misconception 101 Misconceptions and Test-Questions of Earth Science in Senior High School Chun-Ping Weng College Entrance Examination Center Abstract Earth Science is a subject highly related to everyday

More information

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1>

<4D6963726F736F667420576F7264202D203338B4C12D42A448A4E5C3C0B34EC3FE2DAB65ABE1> ϲ ฯ र ቑ ጯ 高雄師大學報 2015, 38, 63-93 高雄港港史館歷史變遷之研究 李文環 1 楊晴惠 2 摘 要 古老的建築物往往承載許多回憶 也能追溯某些歷史發展的軌跡 位於高雄市蓬 萊路三號 現為高雄港港史館的紅磚式建築 在高雄港三號碼頭作業區旁的一片倉庫 群中 格外搶眼 這棟建築建成於西元 1917 年 至今已將近百年 不僅躲過二戰戰 火無情轟炸 並保存至今 十分可貴 本文透過歷史考證

More information

東吳大學

東吳大學 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 律 律 論 論 療 行 The Study on Medical Practice and Coercion 林 年 i 讀 臨 療 留 館 讀 臨 律 六 礪 讀 不 冷 療 臨 年 裡 歷 練 禮 更 老 林 了 更 臨 不 吝 麗 老 劉 老 論 諸 見 了 年 金 歷 了 年

More information

untitled

untitled and Due Diligence M&A in China Prelude and Due Diligence A Case For Proper A Gentleman s Agreement? 1 Respect for the Rule of Law in China mandatory under law? CRITICAL DOCUMENTS is driven by deal structure:

More information

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究

声 明 本 人 郑 重 声 明 : 此 处 所 提 交 的 硕 士 学 位 论 文 基 于 等 级 工 鉴 定 的 远 程 考 试 系 统 客 户 端 开 发 与 实 现, 是 本 人 在 中 国 科 学 技 术 大 学 攻 读 硕 士 学 位 期 间, 在 导 师 指 导 下 进 行 的 研 究 中 国 科 学 技 术 大 学 硕 士 学 位 论 文 题 目 : 农 村 电 工 岗 位 培 训 考 核 与 鉴 定 ( 理 论 部 分 ) 的 计 算 机 远 程 考 试 系 统 ( 服 务 器 端 ) 的 开 发 与 实 现 英 文 题 目 :The Realization of Authenticating Examination System With Computer & Web for

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

Logitech Wireless Combo MK45 English

Logitech Wireless Combo MK45 English Logitech Wireless Combo MK45 Setup Guide Logitech Wireless Combo MK45 English................................................................................... 7..........................................

More information

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode]

Microsoft PowerPoint - AWOL - Acrobat Windows Outlook.ppt [Compatibility Mode] AWOL Windows - Tips & Tricks Resolution, color depth & refresh rate Background color Service packs Disk cleanup (cleanmgr) Disk defragmentation AWOL Windows Resolution, Color Depth & Refresh Rate The main

More information

準 備 第 1~2 週 服 務 第 3~15 週 反 省 第 16~17 週 慶 賀 第 18 週 六 合 作 機 構 協 力 單 位 合 作 協 議 書 : 已 簽 及 附 影 本 乙 份 未 簽, 核 准 之 後 補 送 機 構 名 稱 / 聯 絡 人 台 中 市 青 年 志 工 中 心 財 團

準 備 第 1~2 週 服 務 第 3~15 週 反 省 第 16~17 週 慶 賀 第 18 週 六 合 作 機 構 協 力 單 位 合 作 協 議 書 : 已 簽 及 附 影 本 乙 份 未 簽, 核 准 之 後 補 送 機 構 名 稱 / 聯 絡 人 台 中 市 青 年 志 工 中 心 財 團 ( 三 ) 人 力 資 源 管 理 資 訊 系 統 1 課 程 大 綱 國 立 臺 中 科 技 大 學 102 學 年 度 內 涵 服 務 學 習 課 程 大 綱 一 課 程 基 本 資 訊 開 課 期 別 上 學 期 下 學 期 課 程 名 稱 人 力 資 源 管 理 資 訊 系 統 本 課 程 開 設 次 數 首 次 開 設 非 首 次 開 設 開 課 單 位 資 訊 管 理 系 課 程 屬 性

More information

untitled

untitled 20 90 1998 2001 1 Abstract Under the environment of drastic competitive market, risk and uncertainty that the enterprise faces are greater and greater, the profit ability of enterprise assets rises and

More information

Microsoft Word - 十月號.doc

Microsoft Word - 十月號.doc 沙 田 培 英 中 學 二 零 零 五 年 十 月 十 月 號 地 址 : 沙 田 禾 輋 邨 豐 順 街 9 號 電 話 :2691 7217 傳 真 :2602 0411 電 郵 :stpyc@school.net.hk 主 筆 : 邱 譪 源 校 長 張 敏 芝 小 姐 親 愛 的 家 長 同 學 和 校 友 : 新 學 年 已 開 始 了 幾 個 星 期, 今 天 剛 收 到 教 統 局 發

More information

川 外 250 人, 上 外 222 人, 广 外 209 人, 西 外 195 人, 北 外 168 人, 中 南 大 学 135 人, 西 南 大 学 120 人, 湖 南 大 学 115 人, 天 外 110 人, 大 连 外 国 语 学 院 110 人, 上 海 外 事 学 院 110 人,

川 外 250 人, 上 外 222 人, 广 外 209 人, 西 外 195 人, 北 外 168 人, 中 南 大 学 135 人, 西 南 大 学 120 人, 湖 南 大 学 115 人, 天 外 110 人, 大 连 外 国 语 学 院 110 人, 上 海 外 事 学 院 110 人, 关 于 考 研 准 备 的 几 点 建 议 主 讲 : 张 伯 香 如 何 选 择 学 校 和 专 业 一. 按 招 生 性 质, 全 国 高 校 大 致 可 分 为 以 下 几 类 : 1. 综 合 类 院 校 比 较 知 名 的 有 北 大 南 大 复 旦 武 大 中 大 南 开 厦 大 等 这 类 院 校 重 视 科 研 能 力, 考 试 有 一 定 的 难 度, 比 较 适 合 于 那 些

More information

南華大學數位論文

南華大學數位論文 I II Abstract This study aims at understanding and analysing the general situation and predicament of current educational development in Savigi tribe and probing the roles played by the school, the family

More information

: : : : : ISBN / C53:H : 19.50

: : : : : ISBN / C53:H : 19.50 : : : : 2002 1 1 2002 1 1 : ISBN 7-224-06364-9 / C53:H059-53 : 19.50 50,,,,,,, ; 50,,,,,,,, 1 ,,,,,,,,,,,,,, ;,,,,,,,,, 2 ,,,, 2002 8 3 ( 1 ) ( 1 ) Deduction One Way of Deriving the Meaning of U nfamiliar

More information

<4D6963726F736F667420506F776572506F696E74202D20C8EDBCFEBCDCB9B9CAA6D1D0D0DEBDB2D7F92E707074>

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

More information

1 引言

1 引言 中 国 经 济 改 革 研 究 基 金 会 委 托 课 题 能 力 密 集 型 合 作 医 疗 制 度 的 自 动 运 行 机 制 中 国 农 村 基 本 医 疗 保 障 制 度 的 现 状 与 发 展 的 研 究 课 题 主 持 人 程 漱 兰 中 国 人 民 大 学 农 业 与 农 村 发 展 学 院 课 题 组 2004 年 4 月 2005 年 4 月 1 课 题 组 成 员 名 单 主 持

More information

HC50246_2009

HC50246_2009 Page: 1 of 7 Date: June 2, 2009 WINMATE COMMUNICATION INC. 9 F, NO. 111-6, SHING-DE RD., SAN-CHUNG CITY, TAIPEI, TAIWAN, R.O.C. The following merchandise was submitted and identified by the vendor as:

More information

OA-253_H1~H4_OL.ai

OA-253_H1~H4_OL.ai WARNINGS Note: Read ALL the following BEFORE using this product. Follow all Guidelines at all times while using this product. CAUTION This warning indicates possibility of personal injury and material

More information

9330.doc

9330.doc The research of the ecotourism operated by the cooperative operating system in northern Tapajen Mountain The research of the ecotourism operated by the cooperative operating system in northern Tapajen

More information

<4D6963726F736F667420576F7264202D20D0ECB7C9D4C6A3A8C5C5B0E6A3A92E646F63>

<4D6963726F736F667420576F7264202D20D0ECB7C9D4C6A3A8C5C5B0E6A3A92E646F63> 硕 士 专 业 学 位 论 文 论 文 题 目 性 灵 文 学 思 想 与 高 中 作 文 教 学 研 究 生 姓 名 指 导 教 师 姓 名 专 业 名 称 徐 飞 云 卞 兆 明 教 育 硕 士 研 究 方 向 学 科 教 学 ( 语 文 ) 论 文 提 交 日 期 2012 年 9 月 性 灵 文 学 思 想 与 高 中 作 文 教 学 中 文 摘 要 性 灵 文 学 思 想 与 高 中 作

More information

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源

1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 1. 請 先 檢 查 包 裝 內 容 物 AC750 多 模 式 無 線 分 享 器 安 裝 指 南 安 裝 指 南 CD 光 碟 BR-6208AC 電 源 供 應 器 網 路 線 2. 將 設 備 接 上 電 源, 即 可 使 用 智 慧 型 無 線 裝 置 進 行 設 定 A. 接 上 電 源 B. 啟 用 智 慧 型 裝 置 的 無 線 Wi-Fi C. 選 擇 無 線 網 路 名 稱 "edimax.setup"

More information

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B

Microsoft PowerPoint - NCBA_Cattlemens_College_Darrh_B Introduction to Genetics Darrh Bullock University of Kentucky The Model Trait = Genetics + Environment Genetics Additive Predictable effects that get passed from generation to generation Non-Additive Primarily

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

2015年4月11日雅思阅读预测机经(新东方版)

2015年4月11日雅思阅读预测机经(新东方版) 2015 年 5 月 9 日 雅 思 口 语 回 忆 版 ( 全 国 场 ) 2015 年 5 月 9 日 雅 思 口 语 回 忆 网 友 版 ( 华 北 & 东 北 区 ) 1 5.09 北 外 R9 p1 home apartment 以 后 想 住 个 什 么 样 的 房 子 还 有 几 个 忘 了 p2 a person u disagree sth p3 你 坚 持 不 同 意 别 人 吗

More information

1: public class MyOutputStream implements AutoCloseable { 3: public void close() throws IOException { 4: throw new IOException(); 5: } 6:

1: public class MyOutputStream implements AutoCloseable { 3: public void close() throws IOException { 4: throw new IOException(); 5: } 6: Chapter 15. Suppressed Exception CH14 Finally Block Java SE 7 try-with-resources JVM cleanup try-with-resources JVM cleanup cleanup Java SE 7 Throwable getsuppressed Throwable[] getsuppressed() Suppressed

More information

Untitiled

Untitiled 目 立人1 2011 录 目 录 专家视点 权利与责任 班主任批评权的有效运用 齐学红 3 德育园地 立 沿着鲁迅爷爷的足迹 主题队活动案例 郑海娟 4 播下一颗美丽的种子 沿着鲁迅爷爷的足迹 中队活动反思 郑海娟 5 赠人玫瑰 手有余香 关于培养小学生服务意识的一些尝试和思考 孙 勤 6 人 教海纵横 2011 年第 1 期 总第 9 期 主办单位 绍兴市鲁迅小学教育集团 顾 问 编委会主任 编

More information

國立桃園高中96學年度新生始業輔導新生手冊目錄

國立桃園高中96學年度新生始業輔導新生手冊目錄 彰 化 考 區 104 年 國 中 教 育 會 考 簡 章 簡 章 核 定 文 號 : 彰 化 縣 政 府 104 年 01 月 27 日 府 教 學 字 第 1040027611 號 函 中 華 民 國 104 年 2 月 9 日 彰 化 考 區 104 年 國 中 教 育 會 考 試 務 會 編 印 主 辦 學 校 : 國 立 鹿 港 高 級 中 學 地 址 :50546 彰 化 縣 鹿 港 鎮

More information

hks298cover&back

hks298cover&back 2957 6364 2377 3300 2302 1087 www.scout.org.hk scoutcraft@scout.org.hk 2675 0011 5,500 Service and Scouting Recently, I had an opportunity to learn more about current state of service in Hong Kong

More information

1505.indd

1505.indd 上 海 市 孙 中 山 宋 庆 龄 文 物 管 理 委 员 会 上 海 宋 庆 龄 研 究 会 主 办 2015.05 总 第 148 期 图 片 新 闻 2015 年 9 月 22 日, 由 上 海 孙 中 山 故 居 纪 念 馆 台 湾 辅 仁 大 学 和 台 湾 图 书 馆 联 合 举 办 的 世 纪 姻 缘 纪 念 孙 中 山 先 生 逝 世 九 十 周 年 及 其 革 命 历 程 特 展

More information

IP Access Lists IP Access Lists IP Access Lists

IP Access Lists IP Access Lists IP Access Lists Chapter 10 Access Lists IP Access Lists IP Access Lists IP Access Lists Security) IP Access Lists Access Lists (Network router For example, RouterA can use an access list to deny access from Network 4

More information

TX-NR3030_BAS_Cs_ indd

TX-NR3030_BAS_Cs_ indd TX-NR3030 http://www.onkyo.com/manual/txnr3030/adv/cs.html Cs 1 2 3 Speaker Cable 2 HDMI OUT HDMI IN HDMI OUT HDMI OUT HDMI OUT HDMI OUT 1 DIGITAL OPTICAL OUT AUDIO OUT TV 3 1 5 4 6 1 2 3 3 2 2 4 3 2 5

More information

Microsoft Word - 9702國企國貿.doc

Microsoft Word - 9702國企國貿.doc 財 經 學 群 1. 近 來 有 什 麼 財 經 大 事 讓 你 想 進 財 管 系? 2. 你 認 為 台 灣 將 來 加 入 WTO 後 要 作 何 努 力 3. 就 國 安 基 金 ( 政 府 干 預 經 濟 ) 適 當 與 否 4. 經 濟 不 景 氣 如 果 你 是 政 府 該 如 何 提 昇 台 灣 經 濟? 5. 中 樂 透 彩 頭 彩 的 機 率 怎 麼 算 6. 台 幣 升 貶 代

More information