2013-07-02 101 views

回答

3

getters概念類似於:

class Test { 
    String get example { 
    return "This isn't really a property"; 
    } 
} 

main() { 
    var a = new Test(); 
    print(a.example); 
} 
相關問題