ruby 類(lèi)常量 解析
更新時(shí)間:2007年11月24日 14:20:46 作者:
一個(gè)常量由大寫(xiě)字母開(kāi)頭.它應(yīng)最多被賦值一次.在Ruby的當(dāng)前版本中,常量的再賦值只會(huì)產(chǎn)生警告而不是錯(cuò)誤(non-ANSI版的eval.rb不會(huì)報(bào)告這一警告)
ruby>fluid=30
30
ruby>fluid=31
31
ruby>Solid=32
32
ruby>Solid=33
(eval):1: warning: already initialized constant Solid
33
常量可以定義在類(lèi)里,但不像實(shí)變量,它們可以在類(lèi)的外部訪問(wèn).
ruby> class ConstClass
| C1=101
| C2=102
| C3=103
| def show
| print C1," ",C2," ",C3,"\n"
| end
| end
nil
ruby> C1
ERR: (eval):1: uninitialized constant C1
ruby> ConstClass::C1
101
ruby> ConstClass.new.show
101 102 103
nil
常量也可以定義在模塊里.
ruby> module ConstModule
| C1=101
| C2=102
| C3=103
| def showConstants
| print C1," ",C2," ",C3,"\n"
| end
| end
nil
ruby> C1
ERR: (eval):1: uninitialized constant C1
ruby> include ConstModule
Object
ruby> C1
101
ruby> showConstants
101 102 103
nil
ruby> C1=99 # not really a good idea
99
ruby> C1
99
ruby> ConstModule::C1 # the module's constant is undisturbed ...
101
ruby> ConstModule::C1=99
ERR: (eval):1: compile error
(eval):1: parse error
ConstModule::C1=99
^
ruby> ConstModule::C1 # .. regardless of how we tamper with it.
101
ruby>fluid=30
30
ruby>fluid=31
31
ruby>Solid=32
32
ruby>Solid=33
(eval):1: warning: already initialized constant Solid
33
常量可以定義在類(lèi)里,但不像實(shí)變量,它們可以在類(lèi)的外部訪問(wèn).
ruby> class ConstClass
| C1=101
| C2=102
| C3=103
| def show
| print C1," ",C2," ",C3,"\n"
| end
| end
nil
ruby> C1
ERR: (eval):1: uninitialized constant C1
ruby> ConstClass::C1
101
ruby> ConstClass.new.show
101 102 103
nil
常量也可以定義在模塊里.
ruby> module ConstModule
| C1=101
| C2=102
| C3=103
| def showConstants
| print C1," ",C2," ",C3,"\n"
| end
| end
nil
ruby> C1
ERR: (eval):1: uninitialized constant C1
ruby> include ConstModule
Object
ruby> C1
101
ruby> showConstants
101 102 103
nil
ruby> C1=99 # not really a good idea
99
ruby> C1
99
ruby> ConstModule::C1 # the module's constant is undisturbed ...
101
ruby> ConstModule::C1=99
ERR: (eval):1: compile error
(eval):1: parse error
ConstModule::C1=99
^
ruby> ConstModule::C1 # .. regardless of how we tamper with it.
101
您可能感興趣的文章:
- ruby 學(xué)習(xí)筆記(2) 類(lèi)的基本使用
- ruby 標(biāo)準(zhǔn)類(lèi)型總結(jié)
- Ruby字符串、條件、循環(huán)、數(shù)組、Hash、類(lèi)基本操作筆記
- js 數(shù)組實(shí)現(xiàn)一個(gè)類(lèi)似ruby的迭代器
- 一個(gè)簡(jiǎn)單的Ruby可逆加密解密類(lèi)
- Ruby中的Proc類(lèi)及Proc的類(lèi)方法Proc.new的使用解析
- Ruby類(lèi)實(shí)例變量、類(lèi)實(shí)例方法和類(lèi)變量、類(lèi)方法的區(qū)別
- Ruby中實(shí)現(xiàn)把字符串轉(zhuǎn)換為類(lèi)的2種方法
- Ruby面向?qū)ο缶幊讨蓄?lèi)與方法的基礎(chǔ)學(xué)習(xí)
相關(guān)文章
Linux系統(tǒng)上配置Nginx+Ruby on Rails+MySQL超攻略
這篇文章主要介紹了Linux系統(tǒng)上配置Nginx+Ruby on Rails+MySQL超攻略,用到了RVM,此種服務(wù)器搭建配置極力推薦!需要的朋友可以參考下2015-08-08Ruby使用Monkey Patch猴子補(bǔ)丁方式進(jìn)行程序開(kāi)發(fā)的示例
Monkey Patch猴子補(bǔ)丁是指在程序解釋運(yùn)行時(shí)動(dòng)態(tài)添加類(lèi)或模塊的做法,這里我們就來(lái)看一下Ruby使用Monkey Patch猴子補(bǔ)丁方式進(jìn)行程序開(kāi)發(fā)的示例2016-05-05對(duì)Ruby on Rails進(jìn)行高效的單元測(cè)試的教程
這篇文章主要介紹了在Ruby on Rails中進(jìn)行高效的單元測(cè)試的教程,使用到了Ruby的RSpec和Factory Girl框架,需要的朋友可以參考下2015-04-04Terry七月Ruby讀書(shū)筆記(比較詳細(xì))
今年7月讀《Ruby語(yǔ)言入門(mén)教程v1.0》時(shí)的讀書(shū)筆記,靜靜地面對(duì)電腦,嘗試一種新的語(yǔ)言,是一種淡然的快樂(lè)。2008-11-11