在做WPFMVVM中经常会遇到一些Model.ViewModel的属性添加添加私有字段和更改通知方法来支持Binding. 比如把: public class Test { public string TestData1{get; set;} public string TestData2{get;set;} } 变为: public class Test : INotifyPropertyChanged { private string _testData1; …
python: 循环else: while true: if x>1: print() break else: print() 文件循环: for line in open(‘test.txt’): print(line,end=’’) 获得enumerate: S=’spam‘ for( offset, item) in enumrate(S): print(item, ‘appear is’, offset) 备注: zip函数,使用for循环并行使用多个序列…
一个对象实例可以有自己的属性和方法,当我们调用实例方法时,我们用instance.method()来调用.能不能直接在实例本身上调用呢?在Python中,答案是肯定的. 任何类,只需要定义一个__call__()方法,就可以直接对实例进行调用.请看示例: class Student(object): def __init__(self, name): self.name = name def __call__(self): print('My name is %s.' % self.name)…