摘要:
1.相对,绝对概念太差,框架自作聪明,设置group的visible以后,如果group的visible变量判断没有变化,就不会作用。如果作用里面的child.visible都等于group.visible。group.alpha简直绝了,group.scale爽翻了,group里get_width... 阅读全文
摘要:
python中的get、set函数:class AA: @property def num(self): return self._num @num.setter def num(self,value): self._num = value#不能是... 阅读全文
摘要:
python可以给class实例绑定属性和方法,例:s = Student()s.age =10#动态属性def sayHello(self): print "hello"from types import MethodTypes.sayHello = MethodType(sayHello,... 阅读全文
摘要:
type()type(int) type(3)type(123)==type(456)import typestype("abc") == types.StringType所有类型本身的类型就是TypeType,例:type(int)==types.TypeTypeisinstance("a",(s... 阅读全文
摘要:
#OO继承了objectclass OO(object): #重构了new函数,单例模式,*args,**kwargs先不用理解 def __new__(self,*args,**kwargs): if not "_instance" in vars(cls): ... 阅读全文
摘要:
版本:2.7.8python是解释型语言,执行一次翻译一次,选择用cpython作为解释器输出: 1 print "Hello world" 2 #等同于 "Hello world" 3 4 #一般情况下都要在文件开头确定编码格式,写法如下 5 #!/usr/bin.python 6 # _*_ ... 阅读全文
摘要:
分支界定算法广度优先搜索法四个方向的A*算法贪心算法回溯算法 阅读全文
该文被密码保护。 阅读全文
摘要:
flxtext的构造函数中fieldwidth>0,则autosize=none,wordwrap=trueflxtext的构造函数中fieldwidth<=0,则autosize=left,wordwrap=false 阅读全文