W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
Integer
或pid
,還有更復(fù)雜的類型:例如,round/1
函數(shù),它能將一個(gè)浮點(diǎn)數(shù)近似于一個(gè)整數(shù),以一個(gè)number
作為參數(shù)(integer
或float
),返回一個(gè)integer
.你能在它的文檔中看到,round/1
的類型簽名是:round(number) :: integer
::
意味著左邊的函數(shù)的返回值會(huì)是右邊的類型.函數(shù)規(guī)格是使用@spec
指令來寫的,放在函數(shù)定義上面.函數(shù)round/1
可以這樣寫:
@spec round(number) :: integer
def round(number), do: # implementation...
Elixir也支持復(fù)合類型.例如,一個(gè)整數(shù)列表的類型是?[integer]
?.你可以在類型規(guī)格文檔中看到所有的Elixir內(nèi)置類型.
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: