上篇有個標準的定義動態類變數
class myclass
class << self
attr_accessor :my_constant
enddef my_method
self.class.my_constant = "blah"
endend
p myclass.my_constant #=> nil
myclass.new.my_method
p myclass.my_constant #=> "blah"
如果類也動態定義,那麼子類和module怎麼定義進去的
dynamic_name = "testeval2"
object.const_set(dynamic_name, class.new})
dummy2 = eval("#")
puts "dummy2: #"
dynamic_name = "subtesteval2"
submodule.const_set(dynamic_name, class.new(testeval2))
dummy3 = eval("#")
puts "dummy3: #"
判斷動態類是否存在
def class_exists?(class_name)
eval("defined?(#) && #.is_a?(class)") == true
endclass_name = "blorp"
class_exists?(class_name)
=> false
class_name = "string"
class_exists?(class_name)
=> true
define_method定義的方法引數放到哪?
define_method(:say_hi)
判斷php變數是否定義,是否為空
isset returnstrueif var exists and has value other thannull,falseotherwise.輸入可以是多個變數,只有所有的變數為真的時候,返回真 empty returnsfalseif var has a non empty and non...
判斷php變數是否定義,是否為空
isset returnstrueif var exists and has value other thannull,falseotherwise.輸入可以是多個變數,只有所有的變數為真的時候,返回真 empty returnsfalseif var has a non empty and non...
js判斷變數是否未定義
一般如果變數通過var宣告,但是並未初始化的時候,變數的值為undefined,而未定義的變數則需要通過 typeof 變數 的形式來判斷,否則會發生錯誤。例如 if myvar01 alert 發生錯誤 該 直接發生異常,因為變數myvar01沒有申明 if undefined typeof my...