Probably already know all of these but just in case...
declaration
宣言
Example:
int x;
----
definition
定義
Example
x = 4;
----
inheritance
継承
Example
class Triangle : Shape
----
(memory) allocation
(メモリ) 割り当て
Example:
malloc(4);
----
(memory) deallocation
(メモリ) 割り当ての解放
Example:
free(ptr);
----
structure
構造体
Example:
struct Point{
int x, y, z;
}
----
instantiation
インスタンス化
Example:
new Triangle();
----
executable file
実行ファイル
Example:
a.out
----
argument
引数
Example:
foo(a)のa
----
parameter
Also 引数?
Comment:
While Japanese people probably understand the English just fine, non-Japanese people do not understand the Japanese unfortunately...
1 comment:
日本語でプログラミングできる言語があるみたいですけど,知ってます?
確か「なでしこ」という名前だったような…
Post a Comment