泛型演算法萃取實例

Size: px
Start display at page:

Download "泛型演算法萃取實例"

Transcription

1 指標與陣列 柯向上 Josh Ko 核心概念 指標與陣列之間的關係, 可算是 C 語言最有趣的設計之一 但 C/C++ 的學習者往往沒辦法掌握關鍵所 在, 而弄不清楚指標 陣列的互換關係 說穿了, 陣列實用上只有以下一個規則 : 出現在算式之中的陣列名稱可被隱喻轉換為 指向陣列第一個元素 的指標 就是這個規則而已 ( 事實上本文至此就可以結束了 ) 我在文中暫且把它稱為 (the) Fundamental Rule 除此之外, 陣列沒有別的操作了 別的操作 應用都是由這個規則以及其他 C/C++ 語言基本規 則組合推導而得 所謂 Array Subscripting 我說 : 除此之外, 陣列沒有別的操作, 第一個丟出來的問題一定是 : 那 a[k] 這動作怎麼說? 事實 上,subscripting 運算子 (operator[]) 從來就不是針對陣列, 而是指標的操作 當我們寫 a[k] 因為這是個算式, 根據 Fundamental Rule,a 可以轉換為指標, 進而施行 subscripting 後面就較為大眾 所熟知了 : 對於一個指標 p, 若寫 p[k] 這個算式完全等價於 *(p + k) 於是存取到陣列 a 的第 k 項元素 又因為指標與整數的加法具有交換性, 上面的算式可寫為 *(k + p) 於是等價於 k[p] 所以如果寫 1

2 k[a] 以此存取 a 的第 k 項元素, 也毫無問題 此時, 要把 operator[] 解釋成針對陣列的操作, 恐怕就比較 困難了 陣列引數傳遞 首先我們必須了解 : 不能以一個陣列初始化另一個陣列 也就是說 int a[5]; int c[5] = a; // 錯誤 : 不能以陣列初始化另一個陣列 第二行無法通過編譯 而函式引數傳遞的方式, 是以引數將參數初始化 舉例 : void f(int j){ } //... int i; //... f(i); 進行呼叫時,f 的參數 j 會以對應引數 i 的值進行初始化 陣列無法進行初始化, 因此不能當作函式參 數使用 那麼 : void g(int[]); // 或是 void g(int[n]); 這又是什麼呢? 這參數是隻披上羊皮的狼 ( 對很多初學者而言 ), 我們知道它不可能是個陣列參數 很 多人都清楚, 這個參數事實上是個指標 : void g(int*); 當我們呼叫 g 時 : int a[5]; g(a); 因為 a 出現在算式中, 而 g 的參數是個指標, 於是 Fundamental Rule 介入, 進行 array-to-pointer 轉換, 實際傳入函式的是 指向 a 的第 0 項元素 的指標 當 C++ reference 出現時, 情形變得比較不一樣, 但仍未脫出 Fundamental Rule 的規範 以下手法相當 常見 : 2

3 template<typename T, size_t N> inline size_t array_size(const T (&)[N]){ return N; } 這個 function template 可用來取得一個靜態陣列的元素個數 因為這個 function template 的參數是個 reference to array, 可以用陣列進行初始化, 所以進行呼叫時, 是以貨真價實的陣列把參數初始化 可能有人問 : 那 Fundamental Rule 不就沒派上用場? 哈,Fundamental Rule 在此是沒派上用場, 但也沒有錯 : 出現在算式之中的陣列名稱可被隱喻轉換為 指向陣列第一個元素 的指標 也就是說, 陣列在必要時可進行轉換, 但在 array_size 的例子裡, 陣列不必轉換就已適用, 真的進行 轉換還會出問題呢 再舉一個 C++ templates 的例子 ([6],p. 169): template<typename T> const T& max(const T& a, const T& b); std::cout << max("apple", "Pear") << std::endl; 呼叫者顯然認為 "Apple" 和 "Pear" 兩個 string literals 會以 const char* 的形式傳入, 但因為 max 的 兩個參數都是 reference, 所以無須進行 array-pointer 轉換, 兩個參數的 T 分別會被推導為 const char[6] 和 const char[5], 型別不合, 於是 template argument deduction 失敗 又例如 C 取得陣列元素個數的慣用手法 : #define ARRAYSIZE(a) (sizeof(a) / sizeof((a)[0])) sizeof(a) 也是個算式, 如果 a 先被轉換為指標, 整個算式就走樣了 當然, 這種不施行 array-to-pointer 轉換的程式碼相對而言較為少見 證據在此 為了避免有人不服氣, 我摘錄幾段權威的描述作為佐證 首先是 C++03 Standard [1] 裡面所提的 array-to-pointer 轉換 : 4.2 Array-to-pointer conversion [conv.array] (p. 60) An lvalue or rvalue of type array of N T or array of unknown bound of T can be converted to an rvalue of type pointer to T. The result is a pointer to the first element of the array. 正是 Fundamental Rule 的嚴格定義版 接下來, 看看關於 subscript 運算子的部份 : Subscripting [expr.sub] (p. 68) 3

4 A postfix expression followed by an expression in square brackets is a postfix expression. One of the expressions shall have the type pointer to T and the other shall have enumeration or integral type. The result is an lvalue of type T. The type T shall be a completely-defined object type. The expression E1[E2] is identical (by definition) to *((E1)+(E2)). C99 Standard [2] 在這部份的文字處理比較有趣 : Array subscripting (p. 70) Constraints One of the expressions shall have type pointer to object type, the other expression shall have integer type, and the result has type type. Semantics A postfix expression followed by an expression in square brackets [] is a subscripted designation of an element of an array object. The definition of the subscript operator [] is that E1[E2] is identical to (*((E1)+(E2))). Because of the conversion rules that apply to the binary + operator, if E1 is an array object (equivalently, a pointer to the initial element of an array object) and E2 is an integer, E1[E2] designates the E2-th element of E1 (counting from zero). 就高階語意而言, 的確沒錯, 因為 pointer arithmetic 本來就應該針對 指向陣列元素的指標 施行 不過就底層語意而言,operator[] 仍然只能施行於指標之上 C99 Standard 在此段下面補充一個例子 : EXAMPLE Consider the array object defined by the declaration int x[3][5]; Here x is a 3 x 5 array of ints; more precisely, x is an array of three element objects, each of which is an array of five ints. In the expression x[i], which is equivalent to (*((x)+(i))), x is first converted to a pointer to the initial array of five ints. Then i is adjusted according to the type of x, which conceptually entails multiplying i by the size of the object to which the pointer points, namely an array of five int objects. The results are added and indirection is applied to yield an array of five ints. When used in the expression x[i][j], that array is in turn converted to a pointer to the first of the ints, so x[i][j] yields an int. 最後一句的 that array 指的是 x[i] 由此例子可看出, 任何陣列在施行 subscripting 之前, 必然都會先被轉換為指標, 符合我先前的描述 最後是 C++03 Standard 裡面關於函式宣告的 陣列參數 部份 : 8.3 Meaning of declarators / Functions [dcl.fct] (p. 139)... The type of a function is determined using the following rules. The type of each parameter is 4

5 determined from its own decl-specifier-seq and declarator. After determining the type of each parameter, any parameter of type array of T or function returning T is adjusted to be pointer to T or pointer to function returning T, respectively.... 可見沒有 陣列參數 這種東西 講古 最後提一點 C 演化出陣列 指標的歷史, 作為終曲 C 的 predecessor 是 B,B 的 predecessor 是 BCPL, 後兩者都沒有型別的概念 (typeless) 在 BCPL 和 B 的世界裡, 記憶體是一塊塊大小固定的 cell, 呈線性排列 變數基本上都當作整數看待, 所有的操作都不分型別 : 例如看到 operator+, 就對兩個 cells 執行機器的整數加法 等等 BCPL 和 B 的記憶體模型呈線性排列, 又因為 cell 沒有型別, 一個 cell 裡面存放的值可能是單純的數值資料, 也可能是另一個 cell 在記憶體內的 index 因此, 若對一個 cell 施行 unary operator*, 就會把該 cell 所存的值當作 index, 跳到這個 index 所示的位置去 因為每個 cell 都是整數, 所以把一個 cell 的值加上某個值之後再施行 unary operator*, 就會存取到鄰近的 cell 這就是最原始的指標和指標算術 由此我們也可看出, 指標與整數的加法具有交換律, 歷史上是將整數加法 ( 因為 BCPL/B 沒有型別概念 ) 的交換律套上型別而演化出來的 *(a + k) 看起來比較冗贅,BCPL 於是將此縮寫為 a!k,b 對此的縮寫則是 a[k] 這在數學領域有個恰當的 counterpart:a k, 也就是一般對 C 陣列 取下標 的想法 BCPL 和 B 的陣列語意很有趣 在 B 裡, auto V[10]; 這個述句會配置出 11 個 cells: 首先配置出一個名為 V 的 cell, 再另外配置 10 個連續的 cells, 最後把陣列第一個 cell 的 index 存於 V 中 所以,*V 就是陣列的第一個元素, 也就是 *(V + 0), 也就是 V[0] 因為 C 繼承了 BCPL 和 B 的陣列設計, 也就是以 指向第一個元素的指標 存取陣列, 因此如果以慣常方法詮釋 a[i] 的話, 就會產生 陣列元素編號從 0 開始 的感覺 V 本身是個變數, 所以在 B 裡, 我們甚至可以寫 V = V - 1; V 這個陣列 的 index 上下限就變成了 1 到 10 到了 C, 陣列的語意有了相當大的轉變, 但對使用方式幾無影響 : 在 BCPL 和 B 裡建立陣列時, 必須實際儲存一個指標, 指向陣列的第一個元素 但 C 不再將這個指標儲存起來, 而直接把陣列名稱看作是指向陣列第一個元素的指標 除了對陣列名稱的 assignment 以外, 其他的陣列操作語法都不受影響 直接引用原文 [4]:... Problems became evident when I tried to extend the type notation, especially to add structured 5

6 (record) types. Structures, it seemed, should map in an intuitive way onto memory in the machine, but in a structure containing an array, there was no good place to stash the pointer containing the base of the array, nor any convenient way to arrange that it be initialized. For example, the directory entries of early Unix systems might be described in C as struct { int inumber; char name[14]; }; I wanted the structure not merely to characterize an abstract object but also to describe a collection of bits that might be read from a directory. Where could the compiler hide the pointer to name that the semantics demanded? Even if structures were thought of more abstractly, and the space for pointers could be hidden somehow, how could I handle the technical problem of properly initializing these pointers when allocating a complicated object, perhaps one that specified structures containing arrays containing structures to arbitrary depth? The solution constituted the crucial jump in the evolutionary chain between typeless BCPL and typed C. It eliminated the materialization of the pointer in storage, and instead caused the creation of the pointer when the array name is mentioned in an expression. The rule, which survives in today s C, is that values of array type are converted, when they appear in expressions, into pointers to the first of the objects making up the array. This invention enabled most existing B code to continue to work, despite the underlying shift in the language s semantics. The few programs that assigned new values to an array name to adjust its origin possible in B and BCPL, meaningless in C were easily repaired. More important, the new language retained a coherent and workable (if unusual) explanation of the semantics of arrays, while opening the way to a more comprehensive type structure. 結語 根據我自己的 C/C++ 學習經驗, 學習程式語言時, 若能多研究其語法語意 ( 例如 Fundamental Rule), 並觀察其歷史演進 ( 例如 typeless BCPL/B 到 typed C 的種種轉變 ) 和重要設計決策 ( 例如 BCPL/B/C 的陣列語意演化 ), 將能對該語言有更深一層了解, 運用起來也會更加得心應手 初學者常問的一些基本問題 ( 例如 陣列 index 為何從 0 起算? ) 很多都能因此而豁然開朗 在此推薦 [4] [5], 分別描述 C 和 C++ 的演化歷程與重大決策, 相當值得一讀 6

7 參考資料 [1] ISO/IEC 14882:2003, International Standard Programming Languages C++. [2] ISO/IEC 9899:1999, International Standard Programming Languages C. [3] The C Programming Language, 2/e, by Brian W. Kernighan and Dennis M. Ritchie, Prentice Hall PTR [4] The Development of the C Language, by Dennis M. Ritchie, Second History of Programming Languages conference, Cambridge, Mass., April, [5] The Design and Evolution of C++, by Bjarne Stroustrup, Addison-Wesley [6] C++ Templates 全覽, 侯捷 榮耀 姜宏合譯, 碁峰 2004 原文本 :C++ Templates: the Complete Guide, by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley

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

C C C The Most Beautiful Language and Most Dangerous Language in the Programming World! C 2 C C C 4 C 40 30 10 Project 30 C Project 3 60 Project 40

C C C The Most Beautiful Language and Most Dangerous Language in the Programming World! C 2 C C C 4 C 40 30 10 Project 30 C Project 3 60 Project 40 C C trio@seu.edu.cn C C C C The Most Beautiful Language and Most Dangerous Language in the Programming World! C 2 C C C 4 C 40 30 10 Project 30 C Project 3 60 Project 40 Week3 C Week5 Week5 Memory & Pointer

More information

Scott Effective C++ C++ C++ Roger Orr OR/2 ISO C++ Effective Modern C++ C++ C++ Scoot 42 Bart Vandewoestyne C++ C++ Scott Effective Modern C++ Damien

Scott Effective C++ C++ C++ Roger Orr OR/2 ISO C++ Effective Modern C++ C++ C++ Scoot 42 Bart Vandewoestyne C++ C++ Scott Effective Modern C++ Damien Effective Modern C++ C++ C++ C++11/C++14 C++ Scott Meyers Gerhard Kreuzer Siemens AG Effective Modern C++ Effective Modern C++ Andrei Alexandrescu Facebook Modern C++ Design C++ C++ Nevin Liber DRW Trading

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 9 [P.11] : Dev C++ [P.12] : http://c.feis.tw [P.13] [P.14] [P.15] [P.17] [P.23] Dev C++ [P.24] [P.27] [P.34] C / C++ [P.35] 10 C / C++ C C++ C C++ C++ C ( ) C++

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

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

Microsoft Word doc

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

More information

C++ 程式設計

C++ 程式設計 C C 料, 數, - 列 串 理 列 main 數串列 什 pointer) 數, 數, 數 數 省 不 不, 數 (1) 數, 不 數 * 料 * 數 int *int_ptr; char *ch_ptr; float *float_ptr; double *double_ptr; 數 (2) int i=3; int *ptr; ptr=&i; 1000 1012 ptr 數, 數 1004

More information

一 -50-

一 -50- 200 7 2 49 0 試 論 中 國 戲 劇 表 演 的 多 樣 性 200 - -49- 一 -50- -51- -52- 2 2 2 99 3 2-4 -53- 3 4 95 3 5 93 52 29-370 97 434-435 4 77 擡 30-3 97 92-927 -54- 3-55- 90 5 379-439 5 200-5 200 2 4 5 999 304-35 200 2-56-

More information

地質調査研究報告/Bulletin of the Geological Survey of Japan

地質調査研究報告/Bulletin of the Geological Survey of Japan Shigeru Suto, Takayuki Inomata, Hisashi Sasaki and Sakae Mukoyama (2007) Data base of the volcanic ash fall distribution map of Japan. Bull. Geol. Surv. Japan, vol. 58(9/10), p.261-321, 8 figs, 2 tables,

More information

中 國 學 研 究 期 刊 泰 國 農 業 大 學 บ นทอนเช นก น และส งผลก บการด ดแปลงจากวรรณกรรมมาเป นบทภาพยนตร และบทละคร โทรท ศน ด วยเช นก น จากการเคารพวรรณกรรมต นฉบ บเป นหล

中 國 學 研 究 期 刊 泰 國 農 業 大 學 บ นทอนเช นก น และส งผลก บการด ดแปลงจากวรรณกรรมมาเป นบทภาพยนตร และบทละคร โทรท ศน ด วยเช นก น จากการเคารพวรรณกรรมต นฉบ บเป นหล วารสารจ นศ กษา มหาว ทยาล ยเกษตรศาสตร การเล อกสรรของย คสม ยท แตกต างก น โดยว เคราะห การด ดแปลง บทละครโทรท ศน หร อบทภาพยนต จากผลงานคลาสส กวรรณกรรม สม ยใหม ของจ น The Choice of Times Film Adaptation of Chinese

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 Essential Object-Oriented Programming Josh Ko 2007.03.11 object-oriented programming C++ Java OO class object OOP Ruby duck typing complexity abstraction paradigm objects objects model object-oriented

More information

by industrial structure evolution from 1952 to 2007 and its influence effect was first acceleration and then deceleration second the effects of indust

by industrial structure evolution from 1952 to 2007 and its influence effect was first acceleration and then deceleration second the effects of indust 2011 2 1 1 2 3 4 1. 100101 2. 100124 3. 100039 4. 650092 - - - 3 GDP U 20-30 60% 10% TK01 A 1002-9753 2011 02-0042 - 10 Analysis on Character and Potential of Energy Saving and Carbon Reducing by Structure

More information

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl

Improved Preimage Attacks on AES-like Hash Functions: Applications to Whirlpool and Grøstl SKLOIS (Pseudo) Preimage Attack on Reduced-Round Grøstl Hash Function and Others Shuang Wu, Dengguo Feng, Wenling Wu, Jian Guo, Le Dong, Jian Zou March 20, 2012 Institute. of Software, Chinese Academy

More information

中 國 茶 詩 與 文 人 茶 道 生 活 顏 鸝 慧 人 社 科 院 / 人 文 藝 術 教 學 中 心 摘 要 飲 茶 的 起 源, 歷 來 眾 說 紛 紜, 根 據 文 獻 資 料 顯 示, 在 唐 代 之 前, 飲 茶 只 是 一 種 區 域 性 的 生 活 風 俗 然 西 漢 時 已 有

中 國 茶 詩 與 文 人 茶 道 生 活 顏 鸝 慧 人 社 科 院 / 人 文 藝 術 教 學 中 心 摘 要 飲 茶 的 起 源, 歷 來 眾 說 紛 紜, 根 據 文 獻 資 料 顯 示, 在 唐 代 之 前, 飲 茶 只 是 一 種 區 域 性 的 生 活 風 俗 然 西 漢 時 已 有 明 新 科 技 大 學 校 內 專 題 研 究 計 畫 成 果 報 告 中 國 茶 詩 與 文 人 茶 道 生 活 A Study of Chinese Tea Poetry and The Tea Rule of Poet 計 畫 類 別 : 整 合 型 計 畫 個 人 計 畫 計 畫 編 號 : MUST- 97- 人 藝 -02 執 行 期 間 : 97 年 03 月 01 日 至 97 年

More information

<4D6963726F736F667420576F7264202D205F4230365FB942A5CEA668B443C5E9BB73A740B5D8A4E5B8C9A552B1D0A7F75FA6BFB1A4ACFC2E646F63>

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

More information

_汪_文前新ok[3.1].doc

_汪_文前新ok[3.1].doc 普 通 高 校 本 科 计 算 机 专 业 特 色 教 材 精 选 四 川 大 学 计 算 机 学 院 国 家 示 范 性 软 件 学 院 精 品 课 程 基 金 青 年 基 金 资 助 项 目 C 语 言 程 序 设 计 (C99 版 ) 陈 良 银 游 洪 跃 李 旭 伟 主 编 李 志 蜀 唐 宁 九 李 涛 主 审 清 华 大 学 出 版 社 北 京 i 内 容 简 介 本 教 材 面 向

More information

封面.PDF

封面.PDF Microsoft C Writing Clean Code Microsoft Techniques for Developing Bug-free C Programs Steve Maguire 1 1 2 8 3 31 4 53 5 60 6 75 7 98 8 115 129 A 130 B 133 C 140 160 Beth Joseph Julia Maguire lint

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

2006中國文學研究範本檔

2006中國文學研究範本檔 中 國 文 學 研 究 第 三 十 九 期 2015 年 01 月 頁 223~258 臺 灣 大 學 中 國 文 學 研 究 所 由 心 到 腦 從 腦 的 語 義 脈 絡 論 晚 清 民 初 的 文 化 轉 型 * 徐 瑞 鴻 提 要 傳 統 的 中 醫 理 論 以 心 為 神 明 之 主, 掌 管 思 維 記 憶 與 情 感, 此 一 觀 點 在 近 現 代 受 到 西 方 解 剖 學 的 巨

More information

untitled

untitled LBS Research and Application of Location Information Management Technology in LBS TP319 10290 UDC LBS Research and Application of Location Information Management Technology in LBS , LBS PDA LBS

More information

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

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

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 i ii Abstract The most important task in human resource management is to encourage and help employees to develop their potential so that they can fully contribute to the organization s goals. The main

More information

20

20 37 92 19 40 19 20 21 1 7 22 1/5 6/30 5/3030 23 24 25 26 1 2 27 1 2 28 29 30 5 8 8 3 31 32 33 34 35 36 37 38 39 A Study Investigating Elementary School Students Concept of the Unit in Fraction in Northern

More information

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

國立中山大學學位論文典藏.PDF I II III The Study of Factors to the Failure or Success of Applying to Holding International Sport Games Abstract For years, holding international sport games has been Taiwan s goal and we are on the way

More information

南華大學數位論文

南華大學數位論文 南 華 大 學 ( 文 學 所 ) 碩 士 論 文 論 文 題 目 ( 陳 千 武 小 說 活 著 回 來 及 其 相 關 事 例 研 究 ) 論 文 題 目 (Chen Chien Wu Return Alive And Some Research About It) 研 究 生 : 朱 妍 淩 指 導 教 授 : 林 葉 連 中 華 民 國 一 0 一 年 6 月 8 日 陳 千 武 小 說

More information

Microsoft Word - 7-3.doc

Microsoft Word - 7-3.doc 逢 甲 人 文 社 會 學 報 第 7 期 第 39-64 頁 2003 年 11 月 逢 甲 大 學 人 文 社 會 學 院 元 儒 郝 經 的 有 用 之 學 * 馬 行 誼 摘 要 這 篇 論 文 旨 在 討 論 元 儒 郝 經 的 學 術 核 心 - 有 用 之 學 郝 經 是 元 初 一 位 重 要 的 思 想 家 政 治 家, 歷 代 學 者 對 其 學 術 內 涵 的 論 述, 各 執

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

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

2015年4月11日雅思阅读预测机经(新东方版) 剑 桥 雅 思 10 第 一 时 间 解 析 阅 读 部 分 1 剑 桥 雅 思 10 整 体 内 容 统 计 2 剑 桥 雅 思 10 话 题 类 型 从 以 上 统 计 可 以 看 出, 雅 思 阅 读 的 考 试 话 题 一 直 广 泛 多 样 而 题 型 则 稳 中 有 变 以 剑 桥 10 的 test 4 为 例 出 现 的 三 篇 文 章 分 别 是 自 然 类, 心 理 研 究 类,

More information

BIBLID 0254-4466(2001)19:1 pp. 249-276 19 1 90 6 ** * ** 88 I 2000 8 249 250 19 1 251 1873-1929 1900 1 1902 1 35 1900 1960 7-12 252 19 1 2 3 2 1900 1902 3 2000 129-197 253 4 5 6 4 1902 1962 103 5 Joseph

More information

ebook8-30

ebook8-30 3 0 C C C C C C++ C + + C++ GNU C/C++ GNU egcs UNIX shell s h e l l g a w k P e r l U N I X I / O UNIX shell awk P e r l U N I X C C C C C C U N I X 30.1 C C U N I X 70 C C U N I X U N I X U N I X C Dennis

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

A Study on Grading and Sequencing of Senses of Grade-A Polysemous Adjectives in A Syllabus of Graded Vocabulary for Chinese Proficiency 2002 I II Abstract ublished in 1992, A Syllabus of Graded Vocabulary

More information

Untitled-3

Untitled-3 SEC.. Separable Equations In each of problems 1 through 8 solve the given differential equation : ü 1. y ' x y x y, y 0 fl y - x 0 fl y - x 0 fl y - x3 3 c, y 0 ü. y ' x ^ y 1 + x 3 x y 1 + x 3, y 0 fl

More information

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

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

More information

摘要

摘要 國 立 中 央 大 學 客 家 語 文 研 究 所 碩 士 論 文 台 灣 客 家 童 謠 以 月 光 光 起 興 作 品 研 究 研 究 生 : 黃 彥 菁 指 導 教 授 : 王 帅 華 博 士 陳 秀 琪 博 士 中 華 民 國 九 十 八 年 一 月 摘 要 月 光 光 是 一 首 流 傳 已 久 的 童 謠, 以 此 為 主 題 的 文 本 數 量 甚 多 這 些 大 量 流 傳 下 來

More information

曹美秀.pdf

曹美秀.pdf 2006 3 219 256 (1858-1927) (1846-1894) 1 2 3 1 1988 70 2 1998 51 3 5 1991 12 37-219- 4 5 6 7 8 9 10 11 12 13 14 15 4 1998 5 1998 6 1988 7 1994 8 1995 725-732 9 1987 170 10 52 11 1994 121 12 2000 51 13

More information

國立高雄大學○○○○○○學系(研究所)(標楷體18號字

國立高雄大學○○○○○○學系(研究所)(標楷體18號字 國 立 高 雄 大 學 都 市 發 展 與 建 築 研 究 所 碩 士 論 文 高 雄 後 勁 地 區 傳 統 民 居 特 徵 之 研 究 The Study of The Characteristic of Traditional Residential Buildings of Houjing District in Kaohsiung 研 究 生 : 許 輝 隆 撰 指 導 教 授 : 陳 啟

More information

Microsoft Word - 第四組心得.doc

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

More information

ISSN 1021-4542

ISSN 1021-4542 背景圖像動態化對文字視認性的影響研究 151 國 立 高 雄 師 範 大 學 高雄師大學報 007,,151-166 背景圖像動態化 對文字視認性的影響研究 楊清田 1 黃睿友 摘要 視覺設計者往往為了吸引觀者的注意 而一味地賦予圖像動態效果 對 於觀者而言 動態化的圖像雖能引起注意 卻也增加文字辨識上的困擾 致 使文字訊息讀取不易 甚至產生認知上的誤解 為了更有效地運用動態圖像 的特性 本研究採取

More information

Microsoft PowerPoint - Class5.pptx

Microsoft PowerPoint - Class5.pptx C++ 程式初探 V 2015 暑期 ver. 1.0.1 C++ 程式語言 大綱 1. 大量檔案讀取 & 計算 2. 指標 3. 動態記憶體 & 動態陣列 4. 標準函式庫 (STL) vector, algorithm 5. 結構與類別 2 大量檔案讀取 & 計算 若目前有一個程式將讀取純文字文件 (.txt) 中的整數, 並將該文件中的整數有小到大排序後, 儲存到另外一個新的純文字件中 假設有

More information

Microsoft Word - 11月電子報1130.doc

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

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

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

國 立 屏 東 教 育 大 學 中 國 語 文 學 系 碩 士 班 碩 士 論 文 國 小 國 語 教 科 書 修 辭 格 分 析 以 南 一 版 為 例 指 導 教 授 : 柯 明 傑 博 士 研 究 生 : 鄺 綺 暖 撰 中 華 民 國 一 百 零 二 年 七 月 謝 辭 寫 作 論 文 的 日 子 終 於 畫 下 了 句 點, 三 年 前 懷 著 對 文 學 的 熱 愛, 報 考 了 中

More information

中山大學學位論文典藏

中山大學學位論文典藏 -- IEMBA 3 ii 4W2H Who( ) When( ) What( ) Why( ) How much( ) How to do( ) iii Abstract Pharmaceutical industry can be regard as one of the knowledge-intensive industries. Designing a sales promotion for

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

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

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

國立中山大學學位論文典藏 i Examinations have long been adopting for the selection of the public officials and become an essential tradition in our country. For centuries, the examination system, incorporated with fairness, has

More information

Microsoft Word - 24217010311110028谢雯雯.doc

Microsoft Word - 24217010311110028谢雯雯.doc HUAZHONG AGRICULTURAL UNIVERSITY 硕 士 学 位 论 文 MASTER S DEGREE DISSERTATION 80 后 女 硕 士 生 择 偶 现 状 以 武 汉 市 七 所 高 校 为 例 POST-80S FEMALE POSTGRADUATE MATE SELECTION STATUS STUDY TAKE WUHAN SEVEN UNIVERSITIES

More information

Microsoft Word - 09王充人性論_確定版980317_.doc

Microsoft Word - 09王充人性論_確定版980317_.doc 王 充 有 善 有 惡 的 人 性 論 王 充 有 善 有 惡 的 人 性 論 朝 陽 科 技 大 學 通 識 教 育 中 心 副 教 授 中 文 摘 要 王 充 (27-100) 的 人 性 論 本 於 世 碩 公 孫 尼 子, 主 張 人 性 先 天 上 有 善 有 惡, 進 而 批 評 在 其 之 前 諸 家 的 各 種 陳 言, 斷 其 優 劣, 在 中 國 人 性 論 發 展 史 上 十

More information

BIBLID 0254-4466(2002)20:1 pp. 277-307 20 1 91 6 1904 1920 20 1922 15 Phlip de Vargas Some Aspects of the Chinese Renaissance 1891-1962 1887-1936 Chinese * 277 278 20 1 Renaissance 1873-1929 1 2 3 1902

More information

D A

D A 2015 4 D822.333 A 0452 8832 2015 4 0014-12 14 The Second ASEAN Regional Forum: The ASEAN Regional Forum, A Concept Paper, in ASEAN Regional Forum Documents Series 1994-2006, ASEAN Secretariat, Jakarta,

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

<4D6963726F736F667420576F7264202D203033BDD7A16DA576B04FA145A4ADABD2A5BBACF6A16EADBAB6C0ABD2A4A7B74EB8712E646F63>

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

More information

mode of puzzle-solving

mode of puzzle-solving 91 12 145 174 * * 146 1 1 mode of puzzle-solving 91 12 147 83-105 148 2 3 2 3 151 91 12 149 150 4 4 101-104 91 12 151 identity 5 6 7 5 6 7 100 140 152 8 9 10 8 31-32 9 27-29 10 sense of political efficacy

More information

3戴文鋒-人文.indd

3戴文鋒-人文.indd 國 立 臺 南 大 學 南大學報 第39卷第2期人文與社會類 民國94年 41 66 41 臺灣媽祖 抱接砲彈 神蹟傳說試探 戴文鋒 國立臺南大學臺灣文化研究所 摘 要 二次大戰期間與終戰之後 臺灣各地許多媽祖廟宇 紛紛出現了在二次大戰期間媽祖曾經 顯靈抱接住盟軍所投擲砲彈 因而保住了當地人的生命財產安全的神蹟傳說 二次大戰美軍轟 炸臺灣時 臺灣民間所盛傳的媽祖靈驗事蹟 雖然甚為誇張 但至今仍有信徒

More information

35-55

35-55 BIBLID 0254-4466(2000)18:2 pp. 35-55 18 2 89 12 * 35 36 1 1 24 1980 802-805 37 2 2 128 1959 3223 38 3 4 36 5 6 7 3 5 179 4 14 1805 5 6 258-260 6 127 3215 7 6 255 87 39 8 9 10 11 12 13 14 8 5 1986 642 9

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

附件1:

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

More information

施工災害防治建築師、各專業技師及承包商責任制度之研究

施工災害防治建築師、各專業技師及承包商責任制度之研究 ABSTRACT Keyword : Construction Disaster, Certification, Professional Liability, Ordinance, Specifications, Regulations, Delphi-Technique. Disaster during construction process is something no one likes

More information

93年度分項計畫執行報告-子計畫八.doc

93年度分項計畫執行報告-子計畫八.doc 93 Celestron - 14 This is a four years project. In this project, we will add a solar telescope, a spectrograph, and a few small teaching telescopes to the existing facilities. We will also install a Celestron

More information

马 大 华 人 文 学 与 文 化 学 刊 Journal of Chinese Literature and Culture 6 前 言 顾 城 曾 在 接 受 德 国 汉 学 家 顾 彬 及 张 穗 子 专 访 中, 将 其 诗 歌 创 作 分 为 四 个 时 期, 即 自 然 阶 段 文 化

马 大 华 人 文 学 与 文 化 学 刊 Journal of Chinese Literature and Culture 6 前 言 顾 城 曾 在 接 受 德 国 汉 学 家 顾 彬 及 张 穗 子 专 访 中, 将 其 诗 歌 创 作 分 为 四 个 时 期, 即 自 然 阶 段 文 化 5 顾 城 水 银 组 诗 的 水 意 象 解 读 内 容 摘 要 : 意 象 长 久 以 来 扮 演 着 沟 通 人 与 物 之 间 的 桥 梁 在 顾 城 的 诗 歌 中, 意 象 更 发 挥 了 回 归 到 本 身 及 本 质 上 的 功 用 本 文 旨 在 探 讨 顾 城 组 诗 水 银 里 意 象 所 拼 凑 出 来 的 有 关 复 归 本 源 / 自 然 的 命 题 在 顾 城 笔 下,

More information

Abstract Due to the improving of living standards, people gradually seek lighting quality from capacityto quality. And color temperature is the important subject of it. According to the research from aboard,

More information

錫安教會2015年11月29日分享

錫安教會2015年11月29日分享 錫 安 教 會 2015 年 11 月 29 日 分 享 第 一 章 : 天 馬 座 行 動 答 問 篇 (2) 問 題 (1): 信 息 中 曾 提 及, 有 一 群 忠 良 的 皇 者 和 精 英 製 造 共 同 信 息, 但 亦 有 一 群 奸 惡 的 如 果 將 來 他 們 來 尋 找 我 們, 顯 示 他 們 是 製 造 共 同 信 息 的 人 這 樣, 我 們 有 沒 有 需 要 或 者

More information

10389144 2006 5 30 2006 5 30

10389144 2006 5 30 2006 5 30 10389144 10389144 2006 5 30 2006 5 30 ED ED IIEFEFOF SDISOS ED 10 2 2 1 10 4 1 1 4 4 IIEF SD EFOFISOS EF 2 1 1 4 1 ED ED Study on the effect of Sex Therapy for Erectile Dysfunction Patients ABSTRACT Objective

More information

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

國立中山大學學位論文典藏.PDF ( ) 2-1 p33 3-1 p78 3-2 p79 3-3 p80 3-4 p90 4-1 p95 4-2 p97 4-3 p100 4-4 p103 4-5 p105 4-6 p107 4-7 p108 4-8 p108 4-9 p112 4-10 p114 4-11 p117 4-12 p119 4-13 p121 4-14 p123 4-15 p124 4-16 p131 4-17 p133

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

McGraw-Hill School Education Group Physics : Principles and Problems G S 24

McGraw-Hill School Education Group Physics : Principles and Problems G S 24 2017 4 357 GLOBAL EDUCATION Vol. 46 No4, 2017 * 1 / 400715 / 400715 / 400715 1 2010-2020 2 * mjzxzd1401 2012 AHA120008 1 23 3 4-7 8 9 McGraw-Hill School Education Group Physics : Principles and Problems

More information

A Study on the Relationships of the Co-construction Contract A Study on the Relationships of the Co-Construction Contract ( ) ABSTRACT Co-constructio in the real estate development, holds the quite

More information

: ( ),,,,, 1958,,, , 263, 231, ,,,,,,, 4, 51, 5, 46, 1950, :,, 839, 3711, ( ) ( ) 20 ( ),, 56, 2, 17, 2, 8, 1,,,,, :,,,, ;,,,,

: ( ),,,,, 1958,,, , 263, 231, ,,,,,,, 4, 51, 5, 46, 1950, :,, 839, 3711, ( ) ( ) 20 ( ),, 56, 2, 17, 2, 8, 1,,,,, :,,,, ;,,,, : (1950 1955) 1950,,,,,,, 1949, ( 200433) 10,,, 1950,,,,,,, : 1950,,,,,,??,,,,,,,,,,, :,,, 1991, 1, 3 178 : (1950 1955),,,,, 1958,,, 1950 1955, 263, 231, 32 1950,,,,,,, 4, 51, 5, 46, 1950, :,, 839, 3711,

More information

南華大學數位論文

南華大學數位論文 A THESIS FOR THE DEGREE OF MASTER OF BUSINESS ADMINISTRATION GRADUATE INSTITUTE IN PUBLISHING NAN HUA UNIVERSITY THE OPERATION MODELS OF WRITERS PRESSES IN TAIWAN ADVISOR: PH.D. CHEN CHUN-JUNG GRADUATE

More information

2015 1 330 GLOBAL EDUCATION Vol. 44 No1 2015 / 300387 / 300387 20 20 1926 20 1912 1912 1918 1919 34 1919 1921 1 1922 1923 1925 7 100 2 1922 3 1923 5 1923 1924 4 1927 1949 20 1. 20 5 35 2. 20 20 1927 1949

More information

從詩歌的鑒賞談生命價值的建構

從詩歌的鑒賞談生命價值的建構 Viktor E. Frankl (logotherapy) (will-to-meaning) (creative values) Ture (Good) (Beauty) (experiential values) (attitudinal values) 1 2 (logotherapy) (biological) (2) (psychological) (3) (noölogical) (4)

More information

(procedure-oriented)?? 2

(procedure-oriented)?? 2 1 (procedure-oriented)?? 2 (Objected-Oriented) (class)? (method)? 3 : ( 4 ???? 5 OO 1966 Kisten Nygaard Ole-Johan Dahl Simula Simula 爲 6 Smalltalk Alan Kay 1972 PARC Smalltalk Smalltalk 爲 Smalltalk 爲 Smalltalk

More information

Microsoft Word - 08_76-93_¦ó³B¬O¡§Âk¡¨®a¡H.doc

Microsoft Word - 08_76-93_¦ó³B¬O¡§Âk¡¨®a¡H.doc 臺 灣 圖 書 館 管 理 季 刊 第 二 卷 第 三 期 / 95 年 7 月 何 處 是 歸 家?: 台 灣 俗 語 中 女 有 所 歸 的 女 性 養 成 模 式 與 文 化 反 映 初 探 The Ending of the Traditional Women: A Study about Nyu You Suo Gui the Female s Education Pattern and

More information

~ ~ ~

~ ~ ~ 33 4 2014 467 478 Studies in the History of Natural Sciences Vol. 33 No. 4 2014 030006 20 20 N092 O6-092 A 1000-1224 2014 04-0467-12 200 13 Roger Bacon 1214 ~ 1292 14 Berthold Schwarz 20 Luther Carrington

More information

Microsoft Word - 口試本封面.doc

Microsoft Word - 口試本封面.doc 國 立 屏 東 教 育 大 學 客 家 文 化 研 究 所 碩 士 論 文 指 導 教 授 : 劉 明 宗 博 士 台 灣 客 家 俗 諺 中 的 數 詞 研 究 研 究 生 : 謝 淑 援 中 華 民 國 九 十 九 年 六 月 本 論 文 獲 行 政 院 客 家 委 員 會 99 度 客 家 研 究 優 良 博 碩 論 文 獎 助 行 政 院 客 家 委 員 會 獎 助 客 家 研 究 優 良

More information

Excel VBA Excel Visual Basic for Application

Excel VBA  Excel Visual Basic for Application Excel VBA Jun5,00 Sub 分頁 () Dim i As Integer Dim Cname As String Dim Code As Variant Set score=thisworkbook.sheets("sheet") Code=Array(" 專北一 "," 專北二 "," 專北三 "," 專桃園 "," 專桃竹 "," 專中苗 ", " 專台中 "," 專台南 ","

More information

CC213

CC213 : (Ken-Yi Lee), E-mail: feis.tw@gmail.com 49 [P.51] C/C++ [P.52] [P.53] [P.55] (int) [P.57] (float/double) [P.58] printf scanf [P.59] [P.61] ( / ) [P.62] (char) [P.65] : +-*/% [P.67] : = [P.68] : ,

More information

Abstract Yiwei( 易 緯 ) is one of the most important elements in Yi ( 易 )study of Han dynasty. It had rich meanings and close relation with other parts

Abstract Yiwei( 易 緯 ) is one of the most important elements in Yi ( 易 )study of Han dynasty. It had rich meanings and close relation with other parts 中 文 系 一 四 年 度 碩 士 位 論 文 指 導 教 授 : 陳 睿 宏 教 授 鄭 玄 易 緯 注 及 其 詮 釋 述 評 研 究 生 : 邵 吉 辰 通 過 日 期 : 一 五 年 六 月 Abstract Yiwei( 易 緯 ) is one of the most important elements in Yi ( 易 )study of Han dynasty. It had rich

More information

星河33期.FIT)

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

More information

影響新產品開發成效之造型要素探討

影響新產品開發成效之造型要素探討 異 行 車 例 A Study on the Product Forms Recognition Difference between Designer and Consumer --- Electrical Bicycle as Example. 行 車 省 力 力 綠 老 女 行 車 行 車 了 不 了 行 行 車 行 車 不 行 車 異 行 車 車 車 行 行 異 數 量 I 類 行 異 異

More information

PowerPoint Presentation

PowerPoint Presentation ITM omputer and ommunication Technologies Lecture #4 Part I: Introduction to omputer Technologies Logic ircuit Design & Simplification ITM 計算機與通訊技術 2 23 香港中文大學電子工程學系 Logic function implementation Logic

More information

9 21-40 2004 12 * * 22 9 1 2 3 1 1992 2 1960 2 3 1984 8 87 23 4 5 1697 AD 1779 6 7 8 9 10 11 12 4 1977 109-112 5 87 41993 13-38 6 614 7 8 632 9 1974 8 10 631 11 12 632 9 24 13 14 13 1990 14 25 15 16 15

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

林教授2.PDF

林教授2.PDF 83 Taiwan Congress Function and Trend After Embellishing Constitute LinSuei - gie Abstract National Assembly becomes to be the non-permanent conference aimed at the particular assignments. For this reason,

More information

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

416 Journal of Software 4(3) 2003,1. Java, Java, Java : ; ; ;Java : TP311 : A (binding time analysis ), (partial evaluation)., [1~3]., C Java, Java.,. 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 LIAO Hu-Sheng +, TONG Zhao-Feng, WANG Zhong

More information

Microsoft PowerPoint - Bronson-v3-ch07.ppt [相容模式]

Microsoft PowerPoint - Bronson-v3-ch07.ppt [相容模式] C++ FOR ENGINEERS AND SCIENTISTS THIRD EDITION Chapter 7 Arrays Objectives 2 In this chapter, you will learn about: One-dimensional arrays 一維陣列 Array initialization 陣列起始化 Declaring and processing two-dimensional

More information

中国科学技术大学学位论文模板示例文档

中国科学技术大学学位论文模板示例文档 University of Science and Technology of China A dissertation for doctor s degree An Example of USTC Thesis Template for Bachelor, Master and Doctor Author: Zeping Li Speciality: Mathematics and Applied

More information

國家圖書館典藏電子全文

國家圖書館典藏電子全文 - - I - II - Abstract Except for few intellect games such as chess, mahjong, and poker games, role-play games in on-line games are the mainstream. As for the so-called RPG, briefly speaking, it is the

More information

untitled

untitled 1 5 IBM Intel 1. IBM 第 1/175 页 第 2/175 页 第 3/175 页 80 第 4/175 页 2. IBM 第 5/175 页 3. (1) 第 6/175 页 第 7/175 页 第 8/175 页 = = 第 9/175 页 = = = = = 第 10/175 页 = = = = = = = = 3. (2) 第 11/175 页 第 12/175 页 第 13/175

More information

03施琅「棄留臺灣議」探索.doc

03施琅「棄留臺灣議」探索.doc 38 93 43 59 43 44 1 2 1621 1645 1646 3 1647 1649 4 1 1996 12 121 2 1988 1 54---79 3 1990 2 39 4 1987 8 16 19 1649 27---28 45 1651 5 1656 1662 1664 1667 1668 6 1681 1683 7 13 1958 2 1651 2002 11 67 1961

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

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63>

<4D6963726F736F667420576F7264202D20B5DAC8FDB7BDBE57C9CFD6A7B8B6D6AEB7A8C2C98696EE7DCCBDBEBF2E646F63> 題 目 : 第 三 方 網 上 支 付 之 法 律 問 題 探 究 Title:A study on legal issues of the third-party online payment 姓 名 Name 學 號 Student No. 學 院 Faculty 課 程 Program 專 業 Major 指 導 老 師 Supervisor 日 期 Date : 王 子 瑜 : 1209853J-LJ20-0021

More information

成 大 中 文 學 報 第 四 十 四 期 The Body Metaphors in The Travels of Lao Can Hsu Hui-Lin Assistant Professor, Department of Chinese Literature, National Taiwan

成 大 中 文 學 報 第 四 十 四 期 The Body Metaphors in The Travels of Lao Can Hsu Hui-Lin Assistant Professor, Department of Chinese Literature, National Taiwan 成 大 中 文 學 報 第 四 十 四 期 2014 年 3 月 頁 255-290 國 立 成 功 大 學 中 文 系 論 老 殘 遊 記 中 的 身 體 隱 喻 許 暉 林 * 摘 要 晚 清 以 降, 以 身 體 譬 喻 國 體 成 為 理 解 國 民 與 國 家 關 係 的 重 要 方 式 藉 由 對 老 殘 遊 記 中 身 體 譬 喻 的 分 析, 我 試 圖 提 出 以 下 的 觀 察

More information

131-161

131-161 BIBLID 0254-4466(2002)20:1 pp. 131-161 20 1 91 6 ** 1576-1629?-1630?-1631 1621 * ** NSC88-2411-H-007-006 131 132 20 1 1569-1625?-1632 1 1576-1629 1621 2 1629 1584-1630 3 4 1 1997 218-242 2 1633 26-27 3

More information

中國的科學與中國的公民:大陸研究在台灣的困境\\

中國的科學與中國的公民:大陸研究在台灣的困境\\ 89 12 27 60 * * 28 1 2 1 2 89 12 29 3 3 30 4 4 89 12 31 5 5 negative thinking inferior thinking 32 6 6 self so situation 89 12 33 34 7 8 ideal type 9 7 8 9 89 12 35 36 10 10 self so 89 12 37 38 strange

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