Class
Code
解釋
使用 get > 可以直接呼叫其 function。ex:
a.basePrice
。而不用a.basePrice()
不可帶值給get的 function
使用 set > 可以再設定其function的值。呼叫方式:
a.SetPrice
。不用a.SetPrice()
可帶值給set 的 function
如果沒有 get or set,則呼叫要使用
a.basePrice()
ora.SetPrice()
。
Last updated
使用 get > 可以直接呼叫其 function。ex:a.basePrice
。而不用 a.basePrice()
不可帶值給get的 function
使用 set > 可以再設定其function的值。呼叫方式:a.SetPrice
。不用 a.SetPrice()
可帶值給set 的 function
如果沒有 get or set,則呼叫要使用 a.basePrice()
or a.SetPrice()
。
Last updated