最全面的Java程序員英語詞彙及常見的英文單詞

最全面的Java程序員英語詞彙及常見的英文單詞java

最全面的Java程序員英語詞彙及常見的英文單詞
現在學習Java編程的程序員可謂是愈來愈多了,那麼不少程序員到底是怎樣快速入門而且可以很快的精通這門技術語言的呢?git

不少剛入門的程序員想要快速精通這門技術語言,那麼首先基礎功必需要紮實,今天咱們就來好好的鍛鍊一下本身基礎功力,先從Java程序員常見的英語詞彙和英文單詞開始給你們分享,但願能幫到你們。程序員

專一於Java架構師技術分享,撩我免費送全套架構師晉級資料算法

(歡迎撩我wei♥心:前面是1253後面是8552)數據庫

OO: object-oriented ,面向對象 編程

OOP:object-oriented programming,面向對象編程 Author:JCC Object:對象JDK:Java development kit, java開發工具包 JVM:javavirtual machine ,java虛擬機 Compile:編繹 Run:運行Class:類 System:系統 out:輸出 print:打印 line:行 variable:變量 type:類型 get:獲得operation:操做,運算 array:數組 parameter:參數 method:方法 function:函數 member-variable:成員變量 member-function:成員函數 set:設置 public:公有的 private:私有的 protected:受保護的 default:默認access:訪問 package:包 import:導入 static:靜態的 void:無(返回類型) extends:繼承 parentclass:父類base class:基類 super class:超類 child class:子類 derived class:派生類 override:重寫,覆蓋 overload:重載 final:最終的,不能改變的 abstract:抽象 interface:接口 implements:實現 exception:異常 Runtime:運行時 ArithmeticException:算術異常 ArrayIndexOutOfBoundsException:數組下標越界異常 Next:下一個NullPointerException:空引用異常 ClassNotFoundException:類沒有發現異常 Try:嘗試 Catch:捕捉 Finally:最後NumberFormatException:數字格式異常(字符串不能轉化爲數字) Throw:拋出 Throws: (投擲)表示強制異常處理Throwable:(可拋出的)表示全部異常類的祖先類 Lang:language,語言 Util:工具 Display:顯示 Random:隨機Collection:集合 ArrayList:(數組列表)表示動態數組 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:監聽 Border:邊界 Flow:流 Grid:網格 MenuBar:菜單欄Menu:菜單 MenuItem:菜單項 PopupMenu:彈出菜單 Dialog:對話框 Message:消息Icon:圖標 Tree:樹 Node:節點 Jdbc:javadatabase connectivity,java數據庫鏈接 DriverManager:驅動管理器Connection:鏈接 Statement:表示執行對象 Preparedstatement:表示預執行對象 Resultset:結果集 Close:關閉executeQuery:執行查詢Jbuilder中經常使用英文(共33個)File:文件 New:新建 NewProject:新建項目 New Class: 新建類 NewFile:新建文件 Openproject:打開項目Open file:打開文件 Reopen:從新打開 Closeprojects:關閉項目 Close all except…:除了..所有關閉 Exit:退出 Rename:重命名 View:視圖 Panes:面板組 Project:項目 Content:內容 Structure:結構 Message:消息Source:源文件 Bean:豆子 Properties:屬性 Make:編繹 Build:編繹 Rebuild:重編繹 Refresh:刷新 Project properties:項目屬性 Defaultproject properties:默認的項目屬性 Run:運行 Debug:調試 Tools:工具 Preferences:參數配置 Configure:配置 Libraries:庫報錯英文第一章:JDK(Java Development Kit) java開發工具包 JVM(Java Virtual Machine) java虛擬機 Javac 編譯命令 java 解釋命令 Javadoc 生成java文檔命令 classpath 類路徑 Version 版本 author 做者 public 公共的 class 類 static 靜態的 void 沒有返回值 String 字符串類 System 系統類 out 輸出 print 同行打印 println 換行打印JIT(just-in-time) 及時處理 第二章:byte 字節 char 字符 boolean 布爾 short 短整型 int 整形 long 長整形 float 浮點類型 double 雙精度 if 若是 else 不然 switch 多路分支 case 與常值匹配 break 終止 default 默認 while 當到循環 do 直到循環 for 已知次數循環 continue結束本次循環進行下次跌代 length 獲取數組元素個數 第三章:OOP object oriented programming 面向對象編程 Object 對象 Class 類 Class member 類成員 Class method 類方法 Class variable 類變量 Constructor 構造方法 Package 包 Import package 導入包 第四章:Extends 繼承 ase class 基類 Super class 超類 Overloaded method 重載方法 Overridden method 重寫方法 Public 公有Private 私有 Protected 保護 Static 靜態 Abstract 抽象Interface 接口 Implements interface 實現接口 第五章:Exception 意外,異常 RuntimeExcepiton 運行時異常 ArithmeticException 算術異常 IllegalArgumentException 非法數據異常 ArrayIndexOutOfBoundsException 數組索引越界異常 NullPointerException 空指針異常 ClassNotFoundException 類沒法加載異常(類不能找到) NumberFormatException 字符串到float類型轉換異常(數字格式異常) IOException 輸入輸出異常 FileNotFoundException 找不到文件異常 EOFException 文件結束異常 InterruptedException (線程)中斷異常 try 嘗試 catch 捕捉 finally 最後 throw 投、擲、拋 throws 投、擲、拋 print Stack Trace() 打印堆棧信息 get Message() 得到錯誤消息 get Cause() 得到異常緣由 method 方法 able 可以 instance 實例 check 檢查 第六章:byte(字節) char(字符) int(整型) long(長整型) float(浮點型) double(雙精度) boolean(布爾) short(短整型) Byte (字節類) Character (字符類) Integer(整型類) Long (長整型類) Float(浮點型類) Double (雙精度類) Boolean(布爾類) Short (短整型類) Digit (數字) 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 轉換爲字符串SetTime 設置時間Display 顯示,展現Calendar 日曆Add 添加,增長GetInstance 得到實例 getTime 得到時間Clear 掃除,清除Clone 克隆,複製Util 工具,龍套Components 成分,組成Month 月份Year 年,年歲Hour 小時,鐘頭Minute 分鐘Second 秒Random 隨意,任意Next Int 下一個整數Gaussian 高斯 ArrayList 對列LinkedList 鏈表Hash 無用信息,雜亂信號Map 地圖Vector 向量,矢量Size 大小Collection 收集Shuffle 混亂,洗牌RemoveFirst 移動至開頭 RemoveLast 移動至最後 lastElement 最後的元素 Capacity 容量,生產量Contains 包含,容納Copy 副本,拷貝Search 搜索,查詢InsertElementAt 插入元素在某一位置 第八章:io->in out 輸入/輸出 File 文件import 導入exists 存在isFile 是文件isDirectory 是目錄 getName 獲取名字getPath 獲取路徑getAbsolutePath 獲取絕對路徑 lastModified 最後修改日期 length 長度InputStream 輸入流 OutputStream 輸出流 Unicode 統一的字符編碼標準, 採用雙字節對字符進行編碼Information 信息 FileInputStream 文件輸入流 FileOutputStream文件輸出流 IOException 輸入輸出異常 fileobject 文件對象 available 可獲取的 read 讀取write 寫BufferedReader 緩衝區讀取 FileReader 文本文件讀取 BufferedWriter 緩衝區輸出 FileWriter 文本文件寫出 flush 清空close 關閉DataInputStream 二進制文件讀取 DataOutputStream二進制文件寫出 EOF 最後encoding 編碼Remote 遠程release 釋放第九章:JBuider Java 集成開發環境(IDE)Enterprise 企業版 Developer 開發版 Foundation 基礎版 Messages 消息格 Structure 結構窗格 Project 工程Files 文件Source 源代碼Design 設計History 歷史Doc 文檔File 文件Edit 編輯Search 查找Refactor 要素 View 視圖Run 運行Tools 工具Window 窗口Help 幫助Vector 矢量addElement 添加內容 Project Winzard 工程嚮導 Step 步驟Title 標題Description 描述 Copyright 版權 Company 公司Aptech Limited Aptech有限公司 author 做者Back 後退Finish 完成version 版本Debug 調試New 新建ErrorInsight 調試 第十章:JFrame 窗口框架JPanel 面板JScrollPane 滾動面板 title 標題Dimension 尺寸 Component 組件Swing JAVA輕量級組件getContentPane 獲得內容面板 LayoutManager 佈局管理器 setVerticalScrollBarPolicy 設置垂直滾動條策略 AWT(Abstract WindowToolkit)抽象窗口工具包 GUI (Graphical UserInterface)圖形用戶界面 VERTICAL_SCROLLEARAS_NEEDED 當內容大大面板出現滾動條 VERTICAL_SOROLLEARAS_ALWAYS 顯示滾動條 VERTICAL_SOROLLEARAS_NEVER 不顯示滾動條 JLabel 標籤Icon 圖標image 圖象LEFT 左對齊RIGHT 右對齊JTextField 單行文本getColumns 獲得列數setLayout 設置佈局BorderLayout 邊框佈局 CENTER 居中對齊JTextArea 多行文本setFont 設置字體setHorizontalAlignment 設置文本水平對齊方式 setDefaultCloseOperation 設置默認的關閉操做 add 增長JButton 按鈕 JCheckBox 複選框 JRadioButton單選按鈕 addItem 增長列表項 getItemAt 獲得位置的列表項 getItemCount 獲得列表項個數 setRolloverIcon 當鼠標通過的圖標 setSelectedIcon 當選擇按鈕的圖標 getSelectedItem 獲得選擇的列表項 getSelectedIndex 獲得選擇的索引 ActionListener 按鈕監聽 ActionEvent 按鈕事件 actionPerformed 按鈕單擊方法順序編排abstract (關鍵字) 抽象 ['?bstr?kt]access vt.訪問,存取['?kses]'(n.入口,使用權) algorithm n.算法 ['?lg?riem] Annotation [java] 代碼註釋 [?n?u'tei??n] anonymous adj.匿名的[?'n?nim?s]'(反義:directlyadv.直接地,當即[di'rektli, dai'rektli]) apply v.應用,適用 [?'plai] application n.應用,應用程序[,?pli'kei??n]' (application crash 程序崩潰) arbitrary a.任意的 ['ɑ:bitr?ri] argument n.參數;爭論,論據 ['ɑ:gjum?nt]'(縮寫 args) assert (關鍵字) 斷言 [?'s?:t] ' (java 1.4 以後成爲關鍵字) associate n.關聯(同伴,夥伴)[?'s?u?ieit] attribute n.屬性(品質,特徵)[?'tribju:t] boolean (關鍵字) 邏輯的, 布爾型call n.v.調用; 呼叫; [k?:l] circumstance n.事件(環境,情況)['s?:k?mst?ns]crash n.崩潰,破碎 [kr??] cohesion 內聚,黏聚,結合[k?u'hi:??n] (a class is designed witha single, well-focoused purpose. 應該不止這點) command n. 命令,指令 [k?'mɑ:nd](指揮, 控制)(command-line 命令行) Comments [java] 文本註釋 ['k?ments] compile [java] v.編譯 [k?m'pail]' Compilation n.編輯[,k?mpi'lei??n]const (保留字) constant n. 常量, 常數, 恆量['k?nst?nt]continue (關鍵字) coupling 耦合,聯結 ['k?pli?] making sure that classesknow about other classes only through their APIs. declare [java] 聲明 [di'kl??] default (關鍵字) 默認值; 缺省值 [di'f?:lt] delimiter 定義符; 定界符Encapsulation[java] 封裝 (hidingimplementation details) Exception [java] 例外; 異常 [ik'sep??n]entry n.登陸項, 輸入項, 條目['entri]enum (關鍵字) execute vt.執行 ['eksikju:t] exhibit v.顯示, 陳列 [ig'zibit]exist 存在, 發生 [ig'zist]'(SQL關鍵字 exists) extends (關鍵字) 繼承、擴展 [ik'stend] false (關鍵字) final (關鍵字) finally (關鍵字) fragments 段落; 代碼塊['fr?gm?nt] FrameWork [java] 結構,框架 ['freimw?:k] Generic [java] 泛型 [d?i'nerik] goto (保留字) 跳轉heap n.堆 [hi:p] implements (關鍵字) 實現 ['implim?nt] import (關鍵字) 引入(進口,輸入) Info n.信息(information [,inf?'mei??n] ) Inheritance [java] 繼承[in'herit?ns] (遺傳,遺產) initialize 預置 初始化 [i'ni??laiz] instanceof (關鍵字) 運算符,用於引用變量,以檢查這個對象是不是某種類型。返回 boolean 值。interface (關鍵字) 接口 ['int?feis] invoke vt.調用 [in'v?uk]'( invocation [,inv?u'kei??n]) Iterator [java] 迭代器, 迭代程序legal 合法的 ['li:g?l] log n.日誌,記錄 [l?g]native (關鍵字) ?? ['neitiv] nested [java] 嵌套的 ['nestid] '如:內部類(nested classes)Object [java] 對象 ['?bd?ekt] Overload [java] 方法的重載(不一樣參數列表的同名方法) [,?uv?'l?ud] Override [java] 方法的覆蓋(覆蓋父類的方法) [,?uv?'raid] polymiorphism[java] 多態(polymorphism 多形性[,p?li'm?:fizm]) allowing a single objectto be seen as having many types.principle n.原則,原理,主義['prinsipl]priority n. 優先級 [prai'?riti]process n. 程序, 進程 ['pr?ses]protected (關鍵字) 受保護的,私有的 [pr?'tektid] provide v.規定(供應,準備,預防)[pr?'vaid]refer to v.引用 [ri'f?:][tu:]reference n. 參考(引用,涉及)['ref?r?ns]'-->reference variable 參量, 參考變量,引用變量Reflection [java] 反射 [ri'flek??n] script n.手寫體,小型程序 [skript]serialized vt.序列化,串行化['si?ri?laiz]'(serializable adj.)(deserialize反序列化,反串行化)Socket [java] 網絡套接字['s?kit] stack n.堆棧 [st?k] (對應 heap 堆) statement 程序語句; 語句['steitm?nt]' n. 陳述,指令subclass n.子類 ['s?bklɑ:s]'(supertype 父類) switch (關鍵字) 選擇語句。 n.開關,道岔 [swit?]synchronized (關鍵字) 同步(鎖)['si?kr?naiz] Thread [java] 線程 [θred] throw (關鍵字) throws (關鍵字) [θr?u] 拋出(異常) transient (關鍵字) 瞬變;臨時的['tr?nzi?nt]'(可序列化) valid 正確的,有效的 ['v?lid] variable n.變量 a.可變的['v??ri?bl]volatile (關鍵字) 不穩定的['v?l?tail] while (關鍵字) 循環語句。當...的時候 [hwail]abstract (關鍵字) 抽象['?bstr?kt] access vt.訪問,存取['?kses]'(n.入口,使用權) algorithm n.算法 ['?lg?riem] Annotation [java] 代碼註釋[?n?u'tei??n] anonymous adj.匿名的[?'n?nim?s]'(反義:directlyadv.直接地,當即[di'rektli, dai'rektli]) apply v.應用,適用 [?'plai] application n.應用,應用程序[,?pli'kei??n]' (application crash 程序崩潰) arbitrary a.任意的 ['ɑ:bitr?ri] argument n.參數;爭論,論據 ['ɑ:gjum?nt]'(縮寫 args) assert (關鍵字) 斷言 [?'s?:t] ' (java 1.4 以後成爲關鍵字) associate n.關聯(同伴,夥伴)[?'s?u?ieit] attribute n.屬性(品質,特徵)[?'tribju:t] boolean (關鍵字) 邏輯的, 布爾型call n.v.調用; 呼叫; [k?:l] circumstance n.事件(環境,情況) ['s?:k?mst?ns]crash n.崩潰,破碎 [kr??] cohesion 內聚,黏聚,結合[k?u'hi:??n] (a class is designed witha single, well-focoused purpose. 應該不止這點) command n. 命令,指令 [k?'mɑ:nd](指揮, 控制)(command-line 命令行) Comments [java] 文本註釋['k?ments] compile [java] v.編譯 [k?m'pail]' Compilation n.編輯[,k?mpi'lei??n]const (保留字) constant n. 常量, 常數, 恆量['k?nst?nt]continue (關鍵字) coupling 耦合,聯結 ['k?pli?] making sure that classesknow about other classes only through their APIs. declare [java] 聲明 [di'kl??] default (關鍵字) 默認值; 缺省值 [di'f?:lt] delimiter 定義符; 定界符Encapsulation[java] 封裝 (hidingimplementation details) Exception [java] 例外; 異常[ik'sep??n]entry n.登陸項, 輸入項, 條目['entri]enum (關鍵字) execute vt.執行 ['eksikju:t] exhibit v.顯示, 陳列 [ig'zibit]exist 存在, 發生 [ig'zist]'(SQL關鍵字 exists) extends (關鍵字) 繼承、擴展 [ik'stend] false (關鍵字) final (關鍵字) finally (關鍵字) fragments 段落; 代碼塊['fr?gm?nt] FrameWork [java] 結構,框架['freimw?:k] Generic [java] 泛型 [d?i'nerik] goto (保留字) 跳轉heap n.堆 [hi:p] implements (關鍵字) 實現 ['implim?nt] import (關鍵字) 引入(進口,輸入) Info n.信息(information [,inf?'mei??n] ) Inheritance [java] 繼承[in'herit?ns] (遺傳,遺產) initialize 預置 初始化 [i'ni??laiz] instanceof (關鍵字) 運算符,用於引用變量,以檢查這個對象是不是某種類型。返回 boolean 值。interface (關鍵字) 接口 ['int?feis] invoke vt.調用 [in'v?uk]' ( invocation [,inv?u'kei??n]) Iterator [java] 迭代器, 迭代程序legal 合法的 ['li:g?l] log n.日誌,記錄 [l?g]native (關鍵字) ?? ['neitiv] nested [java] 嵌套的 ['nestid]'如:內部類(nested classes)Object [java] 對象 ['?bd?ekt]Overload [java] 方法的重載(不一樣參數列表的同名方法)[,?uv?'l?ud] Override [java] 方法的覆蓋(覆蓋父類的方法)[,?uv?'raid] polymiorphism[java] 多態 (polymorphism 多形性[,p?li'm?:fizm]) allowing a single objectto be seen as having many types.principle n.原則,原理,主義['prinsipl]priority n. 優先級 [prai'?riti]process n. 程序, 進程 ['pr?ses]protected (關鍵字) 受保護的,私有的 [pr?'tektid] provide v.規定(供應,準備,預防)[pr?'vaid]refer to v.引用 [ri'f?:][tu:]reference n. 參考(引用,涉及)['ref?r?ns]' -->reference variable 參量, 參考變量,引用變量Reflection [java] 反射[ri'flek??n] script n.手寫體,小型程序 [skript]serialized vt.序列化,串行化['si?ri?laiz]'(serializable adj.)(deserialize反序列化,反串行化)Socket [java] 網絡套接字['s?kit]stack n.堆棧 [st?k] (對應 heap 堆) statement 程序語句; 語句['steitm?nt]' n. 陳述,指令subclass n.子類 ['s?bklɑ:s]'(supertype 父類) switch (關鍵字) 選擇語句。 n.開關,道岔 [swit?]synchronized (關鍵字) 同步(鎖) ['si?kr?naiz]Thread [java] 線程 [θred] throw (關鍵字) throws (關鍵字) [θr?u] 拋出(異常) transient (關鍵字) 瞬變;臨時的['tr?nzi?nt]'(可序列化) valid 正確的,有效的['v?lid] variable n.變量 a.可變的['v??ri?bl]volatile (關鍵字) 不穩定的['v?l?tail] while (關鍵字) 循環語句。當...的時候 [hwail]項目經常使用單詞A. argument 參量 abstract 抽象ascent 提高 already 已經 AWT(Abstract Window Toolkit)抽象窗口工具 API(Application Programming Interface)應用程序接口B. byte 字節 Boolean 布爾 banana香蕉 base 基礎 buffer緩衝器 button 按鈕 break 中斷 body身體C. color 顏色 class 類 count 計數 client 客戶 code 代碼calculation 計算 cell 單元 circle圓 capital首都 catch捕獲 check 檢查 container容器 component 組件 command 命令 cube立方,三次方char(=character)字符 cancel取消 case 狀況 choice選擇 click單擊 center 中心 compile編譯 clone克隆,複製 continue 繼續 create創建D. draw 繪圖 data數據 demo 示例DLL(Dynamic Link Library)動態連接庫 document 文檔 descent 繼承 division 分裂,除法 define定義,說明 display顯示E. error 錯誤 extends 擴展 executed 執行 event 事件 enter 輸入,回車鍵 exception 異常 except除外 employee 僱員environment環境 east 東方 equal 相等 Echo 重複F. false 假的 float 單精度型 fruit 水果 file 文件 find 發現found 發現 field 域 final 終結的friend 朋友 fill 填充 focus 焦點font 字體 factorial 階乘G. graphic 圖像 grid 方格 GUI圖形化用戶接口 get 獲得H. host 主機 height 高度I. init(=initialize)初始化 input 輸入 implement 實現 instance 實例 io(=input/output)輸出輸入 interrupted 中斷 int(=integer)整型 item元素 interface 接口 inner 內部的 import 導入 index 索引image 圖像J. Java 爪哇 JDK(JavaDevelopment Kit) Java開發工具 JSP(Java Server Page) Java服務頁 JVM(Java VirtualMachine) Java虛擬機K. Kit 工具L. language 語言 loop 循環 long 長整型 label 標籤 layout 佈局 list 列表 listener 收聽者M. move 移動 menu 菜單 mode 模式 method 方法 metric 米的,公尺 motion 運動 manager 經理 main 主要的msg(=message) 消息N. new 新的 number 數字 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.無R. return 返回 runnable 可捕獲的 radius 半徑 round 環繞 release 釋放rect(=rectangle)長方形 radio 無線電 resolve 解析S. short 短整型 south 南方的 string 字符串 static 靜態的 system 系統 seed 種子 seasonal 季節的 set設置 super 超級 square 平方,二次方 sub 替代的 screen 屏幕 sound聲音 state 狀態 salary 薪水 sleep 睡覺size 大小,尺寸 start 開始 sort 排序 status 狀態synchronize 同步發生 switch 開關 stream 流 symbol 符號T. true 真的 title 標題 type 類型temp(=temporary)暫時的 throw 扔 thread 線程 temperate 溫度tool 工具 try 試圖U. undefined 未定義 UI(UserInterface) 用戶接口 update 更新 URL(Uniform Resource Locator) 統一資源定位器V. volatile 揮發性 visible 不可見的 virtual 虛擬的 variable 變量 value 數值 void 無返回值的volume 列 viewer 觀察者 vector 矢量api

轉發+關注後私信我回復【架構資料】便可免費領取全套架構師學習資料數組

相關文章
相關標籤/搜索