プログラミングで良く使用する単語一覧
使う単語を絞ることで理解しやすくなる
対義語を理解する
-
add / remove
-
insert / delete
-
get / set
-
start /stop
-
begin / end
-
send / receive
-
first / last
-
get / release
-
put / get
-
up / down
-
show / hide
-
source / target
-
open / close
-
source / destination
-
increment / decrement
-
lock / unlock
-
old / new
-
next / previous
-
Begin ⇔ End
-
Start ⇔ Stop
-
Top ⇔ Bottom
-
High ⇔ Low
-
Big ⇔ Small
-
Create ⇔ Destroy
-
Previous ⇔ Next
-
Allocate ⇔ Free
-
Attach ⇔ Detach
-
Get ⇔ Set
-
Get ⇔ Put
-
Input ⇔ Output
-
Show ⇔ Hide
-
Go ⇔ Back
-
Up ⇔ Down
-
Upper ⇔ Lower
動詞
Prefix
is
Describes a characteristic or state of the current context (usually boolean
).
Loading...
can
期待する動作ができるか ※shouldと重複する?
Loading...
has
Describes whether the current context possesses a certain value or state (usually boolean
).
Loading...
should
Reflects a positive conditional statement (usually boolean
) coupled with a certain action.
Loading...
min / max
Represents a minimum or maximum value. Used when describing boundaries or limits.
Loading...
prev /next
Indicate the previous or the next state of a variable in the current context. Used when describing state transitions.
Loading...