1. 程式人生 > >JAVA中一些術語的中英文對照

JAVA中一些術語的中英文對照

前幾天借了一本JAVA完全參考手冊,想從頭好好學一下,正好裡面很多術語都有英文註釋,於是想總結出來萬一以後看英文文件用的上呢!每天積累一點點!

OOP(Object-Oriented Programming):面向物件程式設計

process-oriented model:面向過程模型

structed programming:結構化程式設計

bytecode:位元組碼

interpreter:直譯器

JIT(just-in-time):即時直譯器

abstraction:抽象

encapsulation:封裝

inheritance:繼承

polymorphism:多型

class:類

instance:例項

member variable:成員變數

member method:成員方法

subclass:子類

superclass:超類

compilation unit:編譯單元

annotation:註解

comment:註釋

multiline comment:多行註釋

single-line comment:單行註釋

documentation comment:文件註釋

identifier:識別符號

access modifier:訪問修飾符

literal:字面值(常量值)

archive:存檔

JAR(Java Archive):Java 歸檔檔案

argument:引數

parameter:引數

declare:宣告(變數)

assign:賦值(變數)

initialization:初始化

iteration:迭代

loop:迴圈

demonstrate:演示

block of code:程式碼塊

syntax:語法規則

relational operator:關係運算符

fragment:程式碼片段

cast:型別轉換

widening conversion:(型別的)擴寬轉換

truncation:截尾,截斷

array:陣列

reference:引用

conditional-and:條件與

conditional-or:條件或

constructor:建構函式

destructor:解構函式

overloade:過載