==06-03==
* x x
* Note: [python]模块的命令行参数位于sys.argv(列表类型)
* Note: [python]选项解析的官方模块:getopt, optparse
==06-07==
* x x
* Note: [OOA]传统分析方法:Shlaer-Mellor方法,数据库透视建模,Coad-Yourdon方法
* Note: [OOA]行为分析,领域分析
==06-08==
* x x
* Note: [ORM]SQLAlchemy中使用ORM方式操作数据库,能防止数据库数据注入
* Note: [DB]提倡高级冗余(派生性冗余),反对低级冗余(重复性冗余)
* Note: [Algorithm]递归算法注意:递归函数的输入和递归的结束条件
* Note: [MySQL]Text(或Blob)四种类型最大长度依次为TinyText(255, 2^8-1), Text(65535, 2^16-1),
MediumText(16777215, 2^24-1), LongText(4294967295, 2^32-1)字元
* Note: [MySQL]Char(N)(定长)和VarChar(N)(变长)最大长度为255个字元
* Note: [MySQL]Int类型:TinyInt(1Byte),SmallInt(2Byte),MediumInt(3Byte),Int(4Byte),BigInt(8Byte)
* Note: [MySQL]活用集合类型:Enum(单选,最大条目65535个), Set(多选,最大条目64个)
* Note: [MySQL]float类型:Float(4Byte),Double(8Byte),Decimal(精确浮点,小数部分和整数部分分开存储)
==06-13==
* x x
* Note: [python]可重载操作符(格式__xxx__):init(构造函数),del(析构函数),add(+),or(|),repr(print),str(print),call(()或称函子),getattr(.即引用),getitem([]即索引),setitem([]=即索引赋值),getslice([:]即分片),len(len()),cmp(==,<),ne(!=),gt(>),lt(<),ge(>=),le(<=),eq(=),radd(right-side +即右侧加法),iadd(+=),iter(for in)
* x x
* Note: [eclipse]更改$user变量,eclipse.ini中的-vmargs参数下加入-Duser.name="whateveryouwant"
* Note: [eclipse]使用技巧:{
rename: alt+shift+r
override/implement method: alt+shift+t
word completion: alt+ctrl+/
to upper case: ctrl+shift+x
to lower case: ctrl+shift+y
* x x
* Note: [python]模块的命令行参数位于sys.argv(列表类型)
* Note: [python]选项解析的官方模块:getopt, optparse
==06-07==
* x x
* Note: [OOA]传统分析方法:Shlaer-Mellor方法,数据库透视建模,Coad-Yourdon方法
* Note: [OOA]行为分析,领域分析
==06-08==
* x x
* Note: [ORM]SQLAlchemy中使用ORM方式操作数据库,能防止数据库数据注入
* Note: [DB]提倡高级冗余(派生性冗余),反对低级冗余(重复性冗余)
* Note: [Algorithm]递归算法注意:递归函数的输入和递归的结束条件
* Note: [MySQL]Text(或Blob)四种类型最大长度依次为TinyText(255, 2^8-1), Text(65535, 2^16-1),
MediumText(16777215, 2^24-1), LongText(4294967295, 2^32-1)字元
* Note: [MySQL]Char(N)(定长)和VarChar(N)(变长)最大长度为255个字元
* Note: [MySQL]Int类型:TinyInt(1Byte),SmallInt(2Byte),MediumInt(3Byte),Int(4Byte),BigInt(8Byte)
* Note: [MySQL]活用集合类型:Enum(单选,最大条目65535个), Set(多选,最大条目64个)
* Note: [MySQL]float类型:Float(4Byte),Double(8Byte),Decimal(精确浮点,小数部分和整数部分分开存储)
==06-13==
* x x
* Note: [python]可重载操作符(格式__xxx__):init(构造函数),del(析构函数),add(+),or(|),repr(print),str(print),call(()或称函子),getattr(.即引用),getitem([]即索引),setitem([]=即索引赋值),getslice([:]即分片),len(len()),cmp(==,<),ne(!=),gt(>),lt(<),ge(>=),le(<=),eq(=),radd(right-side +即右侧加法),iadd(+=),iter(for in)
* x x
* Note: [eclipse]更改$user变量,eclipse.ini中的-vmargs参数下加入-Duser.name="whateveryouwant"
* Note: [eclipse]使用技巧:{
rename: alt+shift+r
override/implement method: alt+shift+t
word completion: alt+ctrl+/
to upper case: ctrl+shift+x
to lower case: ctrl+shift+y
}