JAVA編程中常用的英文單詞詞匯匯總_第1頁
JAVA編程中常用的英文單詞詞匯匯總_第2頁
JAVA編程中常用的英文單詞詞匯匯總_第3頁
JAVA編程中常用的英文單詞詞匯匯總_第4頁
JAVA編程中常用的英文單詞詞匯匯總_第5頁
已閱讀5頁,還剩35頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領

文檔簡介

1、Java基礎常見英語詞匯(共70個OO: object-oriented ,面向?qū)ο驩OP: object-oriented programming,面向?qū)ο缶幊蘆DK:Java development kit, java開發(fā)工具包JVM:java virtual machine ,java虛擬機Compile:編繹Run:運行Class:類Object:對象System:系統(tǒng)out:輸出print:打印line:行variable:變量type:類型operation:操作,運算array:數(shù)組parameter:參數(shù)method:方法function:函數(shù)member-variable:成

2、員變量member-function:成員函數(shù)get:得到set:設置public:公有的private:私有的protected:受保護的default:默認access:訪問package:包import:導入static:靜態(tài)的void:無(返回類型extends:繼承parent class:父類base class:基類super class:超類child class:子類derived class:派生類override:重寫,覆蓋overload:重載final:最終的,不能改變的abstract:抽象interface:接口implements:實現(xiàn)exception:異常R

3、untime:運行時ArithmeticException:算術異常ArrayIndexOutOfBoundsException:數(shù)組下標越界異常NullPointerException:空引用異常ClassNotFoundException:類沒有發(fā)現(xiàn)異常NumberFormatException:數(shù)字格式異常(字符串不能轉(zhuǎn)化為數(shù)字 Try:嘗試Catch:捕捉Finally:最后Throw:拋出Throws: (投擲表示強制異常處理Throwable:(可拋出的表示所有異常類的祖先類Lang:language,語言Util:工具 Display:顯示Random:隨機Collection:

4、集合ArrayList:(數(shù)組列表表示動態(tài)數(shù)組HashMap: 散列表,哈希表Swing:輕巧的 Awt:abstract window toolkit:抽象窗口工具包Frame:窗體Size:尺寸Title:標題Add:添加Panel:面板Layout:布局Scroll:滾動Vertical:垂直Horizonatal:水平Label:標簽TextField:文本框TextArea:文本域Button:按鈕Checkbox:復選框Radiobutton:單選按鈕Combobox:復選框 Event:事件Mouse:鼠標Key:鍵Focus:焦點Listener:監(jiān)聽Border:邊界Flow

5、:流Grid:網(wǎng)格MenuBar:菜單欄Menu:菜單MenuItem:菜單項PopupMenu:彈出菜單Dialog:對話框Message:消息 Icon:圖標Tree:樹Node:節(jié)點Jdbc:java database connectivity,java數(shù)據(jù)庫連接DriverManager:驅(qū)動管理器Connection:連接Statement:表示執(zhí)行對象Preparedstatement:表示預執(zhí)行對象Resultset:結(jié)果集Next:下一個Close:關閉executeQuery:執(zhí)行查詢Jbuilder中常用英文(共33個File:文件New:新建New Project:新建項

6、目New Class: 新建類New File:新建文件Open project:打開項目Open file:打開文件Reopen:重新打開Close projects:關閉項目Close all except:除了.全部關閉Rename:重命名Exit:退出View:視圖Panes:面板組Project:項目Content:內(nèi)容Structure:結(jié)構(gòu)Message:消息 Source:源文件Bean:豆子Properties:屬性Make:編繹Build:編繹Rebuild:重編繹Refresh:刷新Project properties:項目屬性Default project proper

7、ties:默認的項目屬性Run:運行Debug:調(diào)試Tools:工具Preferences:參數(shù)配置Configure:配置Libraries:庫JSP中常用英文URL: Universal Resource Location:統(tǒng)一資源定位符IE: Internet Explorer 因特網(wǎng)瀏覽器JSP:java server page.java服務器頁面Model:模型View:視圖C:controller:控制器Tomcat:一種jsp的web服務器WebModule:web模塊Servlet:小服務程序Request:請求Response:響應Init: initialize,初始化Se

8、rvice:服務Destroy:銷毀Startup:啟動Mapping:映射pattern:模式Getparameter:獲取參數(shù)Session:會話Application:應用程序Context:上下文redirect:重定向dispatch:分發(fā)forward:轉(zhuǎn)交setAttribute:設置屬性getAttribute:獲取屬性page:頁面contentType:內(nèi)容類型charset:字符集include:包含tag:標簽taglib:標簽庫EL:expression language,表達式語言Scope:作用域Empty:空JSTL:java standard tag libr

9、ary,java標準標簽庫TLD:taglib description,標簽庫描述符Core:核心Test:測試Foreach:表示循環(huán)Var:variable,變量Status:狀態(tài)Items:項目集合Fmt:format,格式化Filter:過濾器報錯英文第一章:JDK(Java Development Kit java開發(fā)工具包JVM(Java Virtual Machine java虛擬機Javac編譯命令java解釋命令Javadoc生成java文檔命令classpath 類路徑Version版本author作者public公共的class類static靜態(tài)的void沒有返回值Str

10、ing字符串類System系統(tǒng)類out輸出print同行打印println換行打印JIT(just-in-time及時處理第二章:byte 字節(jié)char 字符boolean 布爾short 短整型int 整形long 長整形float 浮點類型double 雙精度if 如果else 否則switch 多路分支case 與常值匹配break 終止default 默認while 當?shù)窖h(huán)do 直到循環(huán)for 已知次數(shù)循環(huán)continue結(jié)束本次循環(huán)進行下次跌代length 獲取數(shù)組元素個數(shù)第三章:OOPobject oriented programming 面向?qū)ο缶幊蘋bject 對象Class

11、 類Class member 類成員Class method類方法Class variable 類變量Constructor 構(gòu)造方法Package 包Import package 導入包第四章:Extends 繼承Base class 基類Super class 超類Overloaded method 重載方法Overridden method 重寫方法Public 公有Private 私有Protected 保護Static 靜態(tài)Abstract抽象Interface 接口Implements interface 實現(xiàn)接口第五章:Exception 意外,異常RuntimeExcepito

12、n 運行時異常ArithmeticException 算術異常IllegalArgumentException 非法數(shù)據(jù)異常ArrayIndexOutOfBoundsException 數(shù)組索引越界異常NullPointerException 空指針異常ClassNotFoundException 類無法加載異常(類不能找到 NumberFormatException 字符串到float類型轉(zhuǎn)換異常(數(shù)字格式異常 IOException 輸入輸出異常FileNotFoundException 找不到文件異常EOFException 文件結(jié)束異常InterruptedException (線程中

13、斷異常try 嘗試catch 捕捉finally 最后throw 投、擲、拋throws 投、擲、拋print Stack Trace( 打印堆棧信息get Message(獲得錯誤消息get Cause(獲得異常原因method 方法able 能夠instance 實例check 檢查第六章:byte(字節(jié)char(字符int(整型long(長整型float(浮點型 double(雙精度 boolean(布爾 short(短整型Byte (字節(jié)類 Character (字符類 Integer(整型類 Long (長整型類 Float(浮點型類 Double (雙精度類 Boolean(布爾類

14、 Short (短整型類 Digit (數(shù)字Letter (字母 Lower (小寫Upper (大寫Space (空格 Identifier (標識符 Start (開始String (字符串 length (值equals (等于Ignore (忽略 compare (比較 sub (提取concat (連接 replace (替換trim (整理Buffer (緩沖器 reverse (顛倒delete (刪除 append (添加 Interrupted (中斷的第七章:Date 日期,日子After 后來,后面Before 在前,以前Equals 相等,均等toString 轉(zhuǎn)換為字

15、符串SetTime 設置時間Display 顯示,展示Calendar 日歷Add 添加,增加GetInstance獲得實例getTime 獲得時間Clear 掃除,清除Clone 克隆,復制Util 工具,龍?zhí)證omponents成分,組成Month 月份Year 年,年歲Hour 小時,鐘頭Minute 分鐘Second 秒Random 隨意,任意Next Int 下一個整數(shù)Gaussian 高斯ArrayList 對列LinkedList鏈表Hash 無用信息,雜亂信號Map 地圖Vector 向量,矢量Size 大小Collection收集Shuffle 混亂,洗牌RemoveFirs

16、t移動至開頭RemoveLast 移動至最后lastElement最后的元素Capacity 容量,生產(chǎn)量Contains 包含,容納Copy 副本,拷貝Search 搜索,查詢InsertElementAt 插入元素在某一位置第八章:io->in out 輸入/輸出File文件import導入exists存在isFile是文件isDirectory 是目錄getName獲取名字getPath獲取路徑getAbsolutePath 獲取絕對路徑lastModified 最后修改日期length長度InputStream 輸入流OutputStream 輸出流Unicode統(tǒng)一的字符編碼標

17、準, 采用雙字節(jié)對字符進行編碼Information 信息FileInputStream 文件輸入流FileOutputStream文件輸出流IOException 輸入輸出異常fileobject 文件對象available 可獲取的read讀取write寫B(tài)ufferedReader 緩沖區(qū)讀取FileReader 文本文件讀取BufferedWriter 緩沖區(qū)輸出FileWriter 文本文件寫出flush清空close關閉DataInputStream 二進制文件讀取DataOutputStream二進制文件寫出EOF最后encoding編碼Remote遠程release釋放第九章:

18、JBuiderJava 集成開發(fā)環(huán)境(IDEEnterprise 企業(yè)版Developer 開發(fā)版Foundation 基礎版Messages 消息格Structure 結(jié)構(gòu)窗格Project工程Files文件Source源代碼Design設計History歷史Doc文檔File文件Edit編輯Search查找Refactor 要素View視圖Run運行Tools工具Window窗口Help幫助Vector矢量addElement 添加內(nèi)容Project Winzard 工程向?qū)tep步驟Title標題Description 描述Copyright 版權(quán)Company公司Aptech Lim

19、ited Aptech有限公司author 作者Back后退Finish完成version版本Debug調(diào)試New新建ErrorInsight 調(diào)試第十章:JFrame窗口框架JPanel 面板JScrollPane 滾動面板title 標題Dimension 尺寸Component組件SwingJA V A輕量級組件getContentPane 得到內(nèi)容面板LayoutManager布局管理器setVerticalScrollBarPolicy設置垂直滾動條策略AWT(Abstract Window Toolkit抽象窗口工具包GUI (Graphical User Interface圖形用

20、戶界面VERTICAL_SCROLLEARAS_NEEDED當內(nèi)容大大面板出現(xiàn)滾動條VERTICAL_SOROLLEARAS_ALWAYS顯示滾動條VERTICAL_SOROLLEARAS_NEVER不顯示滾動條JLabel標簽Icon 圖標image圖象LEFT 左對齊RIGHT右對齊JTextField單行文本getColumns得到列數(shù)setLayout設置布局BorderLayout 邊框布局CENTER居中對齊JTextArea多行文本setFont設置字體setHorizontalAlignment設置文本水平對齊方式setDefaultCloseOperation設置默認的關閉操

21、作add增加JButton 按鈕JCheckBox 復選框JRadioButton單選按鈕addItem 增加列表項getItemAt 得到位置的列表項getItemCount 得到列表項個數(shù)setRolloverIcon 當鼠標經(jīng)過的圖標setSelectedIcon 當選擇按鈕的圖標getSelectedItem 得到選擇的列表項getSelectedIndex 得到選擇的索引ActionListener按鈕監(jiān)聽ActionEvent 按鈕事件actionPerformed按鈕單擊方法附加.可能有重復編程英語:(手摘abstract (關鍵字 抽象'?bstr?ktaccessvt

22、.訪問,存取'?kses'(n.入口,使用權(quán)algorithmn.算法'?lg?riemAnnotationjava 代碼注釋?n?u'tei?nanonymousadj.匿名的?'n?nim?s'(反義:directly adv.直接地,立即di'rektli, dai'rektli apply v.應用,適用?'plaiapplication n.應用,應用程序,?pli'kei?n' (application crash 程序崩潰 arbitrarya.任意的':bitr?riargument

23、 n.參數(shù);爭論,論據(jù)':gjum?nt'(縮寫argsassert (關鍵字 斷言?'s?:t ' (java 1.4 之后成為關鍵字associaten.關聯(lián)(同伴,伙伴 ?'s?u?ieitattributen.屬性(品質(zhì),特征 ?'tribju:tboolean(關鍵字 邏輯的, 布爾型circumstancen.事件(環(huán)境,狀況 's?:k?mst?nscrash n.崩潰,破碎kr?cohesion 內(nèi)聚,黏聚,結(jié)合k?u'hi:?n(a class is designed with a single, well-fo

24、coused purpose. 應該不止這點command n. 命令,指令k?'m:nd(指揮, 控制 (command-line 命令行 Comments java 文本注釋'k?mentscompilejava v.編譯k?m'pail' Compilation n.編輯,k?mpi'lei?nconst (保留字constant n. 常量, 常數(shù), 恒量'k?nst?ntcontinue (關鍵字coupling 耦合,聯(lián)結(jié)'k?pli?making sure that classes know about other clas

25、ses only through their APIs.declarejava 聲明di'kl?default(關鍵字 默認值; 缺省值di'f?:ltdelimiter定義符; 定界符Encapsulationjava 封裝(hiding implementation detailsException java 例外; 異常ik'sep?nentry n.登錄項, 輸入項, 條目'entrienum(關鍵字execute vt.執(zhí)行'eksikju:texhibit v.顯示, 陳列ig'zibitexist 存在, 發(fā)生ig'zist

26、 '(SQL關鍵字existsextends(關鍵字 繼承、擴展ik'stendfalse (關鍵字final (關鍵字 finally (關鍵字fragments段落; 代碼塊'fr?gm?ntFrameWork java 結(jié)構(gòu),框架'freimw?:kGenericjava 泛型d?i'nerikgoto(保留字 跳轉(zhuǎn)heap n.堆hi:pimplements(關鍵字 實現(xiàn)'implim?ntimport (關鍵字 引入(進口,輸入Info n.信息(information ,inf?'mei?n Inheritance java

27、繼承in'herit?ns (遺傳,遺產(chǎn)initialize 預置初始化i'ni?laizinstanceof(關鍵字 運算符,用于引用變量,以檢查這個對象是否是某種類型。返回boolean 值。interface (關鍵字 接口'int?feisinvokevt.調(diào)用in'v?uk' ( invocation ,inv?u'kei?nIterator java 迭代器, 迭代程序legal 合法的'li:g?llogn.日志,記錄l?gnative (關鍵字 ?'neitivnested java 嵌套的'nestid

28、'如:內(nèi)部類(nested classesObject java 對象'?bd?ektOverload java 方法的重載(不同參數(shù)列表的同名方法 ,?uv?'l?udOverride java 方法的覆蓋(覆蓋父類的方法 ,?uv?'raidpolymiorphismjava 多態(tài)(polymorphism 多形性,p?li'm?:fizmallowing a single object to be seen as having many types.principlen.原則,原理,主義'prinsiplpriority n. 優(yōu)先級pra

29、i'?ritiprocess n. 程序, 進程'pr?sesprotected (關鍵字 受保護的,私有的pr?'tektidprovide v.規(guī)定(供應,準備,預防pr?'vaidrefer to v.引用ri'f?:tu:referencen. 參考(引用,涉及'ref?r?ns' ->reference variable 參量, 參考變量,引用變量Reflectionjava 反射ri'flek?nscriptn.手寫體,小型程序skriptserialized vt.序列化,串行化'si?ri?laiz&

30、#39;(serializable adj.(deserialize反序列化,反串行化 Socket java 網(wǎng)絡套接字's?kitstack n.堆棧st?k (對應heap 堆statement程序語句; 語句'steitm?nt' n. 陳述,指令subclass n.子類's?bkl:s' (supertype 父類switch (關鍵字 選擇語句。n.開關,道岔swit?synchronized (關鍵字 同步(鎖 'si?kr?naizThread java 線程redthrow (關鍵字 throws (關鍵字 r?u 拋出(異常

31、transient (關鍵字 瞬變;臨時的'tr?nzi?nt'(可序列化valid 正確的,有效的'v?lidvolatile (關鍵字 不穩(wěn)定的'v?l?tailwhile (關鍵字 循環(huán)語句。當.的時候hwailabstract (關鍵字 抽象'?bstr?ktaccessvt.訪問,存取'?kses'(n.入口,使用權(quán)algorithmn.算法'?lg?riemAnnotationjava 代碼注釋?n?u'tei?nanonymousadj.匿名的?'n?nim?s'(反義:directly ad

32、v.直接地,立即di'rektli, dai'rektli apply v.應用,適用?'plaiapplication n.應用,應用程序,?pli'kei?n' (application crash 程序崩潰arbitrarya.任意的':bitr?riargument n.參數(shù);爭論,論據(jù)':gjum?nt'(縮寫argsassert (關鍵字 斷言?'s?:t ' (java 1.4 之后成為關鍵字associaten.關聯(lián)(同伴,伙伴 ?'s?u?ieitattributen.屬性(品質(zhì),特征 ?

33、'tribju:tboolean(關鍵字 邏輯的, 布爾型circumstancen.事件(環(huán)境,狀況 's?:k?mst?nscrash n.崩潰,破碎kr?cohesion 內(nèi)聚,黏聚,結(jié)合k?u'hi:?n(a class is designed with a single, well-focoused purpose. 應該不止這點command n. 命令,指令k?'m:nd(指揮, 控制 (command-line 命令行Comments java 文本注釋'k?mentscompilejava v.編譯k?m'pail' C

34、ompilation n.編輯,k?mpi'lei?nconst (保留字constant n. 常量, 常數(shù), 恒量'k?nst?ntcontinue (關鍵字coupling 耦合,聯(lián)結(jié)'k?pli?making sure that classes know about other classes only through their APIs.declarejava 聲明di'kl?default(關鍵字 默認值; 缺省值di'f?:ltdelimiter定義符; 定界符Encapsulationjava 封裝(hiding implementat

35、ion detailsException java 例外; 異常ik'sep?nentry n.登錄項, 輸入項, 條目'entrienum(關鍵字execute vt.執(zhí)行'eksikju:texhibit v.顯示, 陳列ig'zibitexist 存在, 發(fā)生ig'zist '(SQL關鍵字existsextends(關鍵字 繼承、擴展ik'stendfalse (關鍵字final (關鍵字 finally (關鍵字fragments段落; 代碼塊'fr?gm?ntFrameWork java 結(jié)構(gòu),框架'freim

36、w?:kGenericjava 泛型d?i'nerikgoto(保留字 跳轉(zhuǎn)heap n.堆hi:pimplements(關鍵字 實現(xiàn)'implim?ntimport (關鍵字 引入(進口,輸入Info n.信息(information ,inf?'mei?n Inheritance java 繼承in'herit?ns (遺傳,遺產(chǎn)initialize 預置初始化i'ni?laizinstanceof(關鍵字 運算符,用于引用變量,以檢查這個對象是否是某種類型。返回boolean 值。interface (關鍵字 接口'int?feisinvo

37、kevt.調(diào)用in'v?uk' ( invocation ,inv?u'kei?nIterator java 迭代器, 迭代程序legal 合法的'li:g?llogn.日志,記錄l?gnative (關鍵字 ?'neitivnested java 嵌套的'nestid '如:內(nèi)部類(nested classesObject java 對象'?bd?ektOverload java 方法的重載(不同參數(shù)列表的同名方法 ,?uv?'l?udOverride java 方法的覆蓋(覆蓋父類的方法 ,?uv?'raidp

38、olymiorphismjava 多態(tài)(polymorphism 多形性,p?li'm?:fizmallowing a single object to be seen as having many types.principlen.原則,原理,主義'prinsiplpriority n. 優(yōu)先級prai'?ritiprocess n. 程序, 進程'pr?sesprotected (關鍵字 受保護的,私有的pr?'tektidprovide v.規(guī)定(供應,準備,預防pr?'vaidrefer to v.引用ri'f?:tu:refer

39、encen. 參考(引用,涉及'ref?r?ns' ->reference variable 參量, 參考變量,引用變量Reflectionjava 反射ri'flek?nscriptn.手寫體,小型程序skriptserialized vt.序列化,串行化'si?ri?laiz'(serializable adj.(deserialize反序列化,反串行化 Socket java 網(wǎng)絡套接字's?kitstack n.堆棧st?k (對應heap 堆statement程序語句; 語句'steitm?nt' n. 陳述,指令

40、subclass n.子類's?bkl:s' (supertype 父類switch (關鍵字 選擇語句。n.開關,道岔swit?synchronized (關鍵字 同步(鎖 'si?kr?naizThread java 線程redthrow (關鍵字 throws (關鍵字 r?u 拋出(異常transient (關鍵字 瞬變;臨時的'tr?nzi?nt'(可序列化valid 正確的,有效的'v?lidvolatile (關鍵字 不穩(wěn)定的'v?l?tailwhile (關鍵字 循環(huán)語句。當.的時候hwailargument 參量abst

41、ract 抽象ascent 提升already 已經(jīng)AWT(Abstract Window Toolkit抽象窗口工具API(Application Programming Interface應用程序接口B. byte 字節(jié)Boolean 布爾banana香蕉base 基礎buffer緩沖器button 按鈕break 中斷body 身體C. color 顏色class 類count 計數(shù)client 客戶code 代碼calculation 計算cell 單元circle圓capital首都catch捕獲check 檢查container容器component 組件command 命令cub

42、e立方,三次方char(=character字符cancel取消case 情況choice選擇click單擊center 中心compile編譯clone克隆,復制continue 繼續(xù)create建立D. draw 繪圖data數(shù)據(jù)demo 示例DLL(Dynamic Link Library動態(tài)鏈接庫document 文檔descent 繼承division 分裂,除法define定義,說明display顯示E. error 錯誤extends 擴展executed 執(zhí)行event 事件enter 輸入,回車鍵exception 異常except 除外employee 雇員environm

43、ent 環(huán)境east 東方equal 相等Echo 重復F. false 假的float 單精度型fruit 水果file 文件find 發(fā)現(xiàn)found 發(fā)現(xiàn)field 域final 終結(jié)的friend 朋友fill 填充focus 焦點font 字體factorial 階乘G. graphic 圖像grid 方格GUI圖形化用戶接口get 得到H. host 主機height 高度I. init(=initialize初始化input 輸入implement 實現(xiàn)instance 實例io(=input/output輸出輸入interrupted 中斷int(=integer整型item元素

44、interface 接口inner 內(nèi)部的import 導入index 索引image 圖像J. Java 爪哇JDK(Java Development Kit Java開發(fā)工具JSP(Java Server Page Java服務頁JVM(Java Virtual Machine Java虛擬機K. Kit 工具L. language 語言loop 循環(huán)long 長整型label 標簽layout 布局list 列表listener 收聽者M. move 移動menu 菜單mode 模式method 方法metric 米的,公尺motion 運動manager 經(jīng)理main 主要的msg(=

45、message 消息N. new 新的number 數(shù)字north 北方null 空的native 本地的O. override 過載orange 橘子output 輸出object 對象out 外部的oval 橢圓P. public 公共的protected 保護的private 私有的property 屬性point 點price 價格problem 問題package 打包,包裹print 打印path 路徑po;ygon 多邊形program 程序prompt 提示parse 分析press 按,壓panel 面板paint 畫Q. q無R. return 返回runnable 可捕獲

46、的radius 半徑round 環(huán)繞release 釋放rect(=rectangle長方形radio 無線電resolve 解析S. short 短整型south 南方的string 字符串static 靜態(tài)的system 系統(tǒng)seed 種子seasonal 季節(jié)的set 設置super 超級square 平方,二次方sub 替代的screen 屏幕sound 聲音state 狀態(tài)salary 薪水sleep 睡覺size 大小,尺寸start 開始sort 排序status 狀態(tài)synchronize 同步發(fā)生switch 開關stream 流symbol 符號T. true 真的titl

47、e 標題type 類型temp(=temporary暫時的throw 扔thread 線程temperate 溫度tool 工具try 試圖U. undefined 未定義UI(User Interface 用戶接口update 更新URL(Uniform Resource Locator 統(tǒng)一資源定位器V. volatile 揮發(fā)性visible 不可見的virtual 虛擬的variable 變量value 數(shù)值void 無返回值的volume 列viewer 觀察者vector 矢量我喜歡式:constructor 建構(gòu)式declaration 宣告式definition 定義式dest

48、ructor 解構(gòu)式expression 算式(運算式function 函式pattern 范式、模式、樣式program 程式signature 標記式(簽名式/署名式我喜歡件:(這是個彈性非常大的可組合字assembly (裝配件component 組件construct 構(gòu)件control 控件event 事件hardware 硬件object 物件part 零件、部件singleton 單件software 軟件work 工件、機件我喜歡器:adapter 配接器allocator 配置器compiler 編譯器container 容器iterator 迭代器linker 連結(jié)器lis

49、tener 監(jiān)聽器interpreter 直譯器translator 轉(zhuǎn)譯器/翻譯器我喜歡別:class 類別type 型別我喜歡化:generalized 泛化specialized 特化overloaded 多載化(重載我喜歡型:polymorphism 多型genericity 泛型我喜歡程:process 行程/進程(大陸用語thread 緒程/線程(大陸用語programming 編程英中繁簡編程術語對照英文繁體譯詞(有些是侯捷個人喜好,普及與否難說大陸慣用術語- #define 定義預定義abstract 抽象的抽象的abstraction 抽象體、抽象物、抽象性抽象體、抽象物、抽

50、象性access 存取、取用存取、訪問access level 存取級別訪問級別access function 存取函式訪問函數(shù)activate 活化激活active 作用中的adapter 配接器適配器address 位址地址address space 位址空間,定址空間address-of operator 取址運算子取地址操作符aggregation 聚合algorithm 演算法算法allocate 配置分配allocator (空間配置器分配器application 應用程式應用、應用程序application framework 應用程式框架、應用框架應用程序框架architecture 架構(gòu)、系統(tǒng)架構(gòu)體系結(jié)構(gòu)argument 引數(shù)(傳給函式的值。叁見parameter 叁數(shù)、實質(zhì)叁數(shù)、實叁、

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論