註冊
登入
English
英狐狸 - 線上英漢字典
翻譯
const
-英文-繁體中文詞典
const
美
/kənst/
英
/kɒnst/
#不常見
定義
n. 名詞
宣告時即固定不變的資料元素
The
programmer
declared
a
const
variable
to
store
the
pi
value
.
程式設計師宣告了一個const變數來存儲圓周率的值。
adj. 形容詞
不變的變數值;無法修改的
The
const
keyword
ensures
the
variable's
value
remains
unchanged
.
const關鍵字保證變數的值保持不變。
不會改變狀態的函数;無副作用的
In
the
const
function
,
the
object's
state
is
preserved
after
execution
.
在const函數中,物件的狀態在執行後保持不變。