1.每个类都默认导入 import
java.lang.*;2.如果一个类没有定义构造方法,则默认提供公开无参构造方法3.在类中,访问成员变量或成员方法,如果不加引用,默认加上"this."4.在构造方法中,如果第一行不是"this(...)"或"super(...)"
,默认为"super();"...
分类:
编程语言 时间:
2014-07-22 23:09:35
阅读次数:
280
The Super PowersTime Limit:1000MSMemory
Limit:Unknown64bit IO Format:%lld & %llu[Submit] [Go Back]
[Status]DescriptionAThe Super PowersWe all know the...
分类:
其他好文 时间:
2014-07-22 23:09:34
阅读次数:
554
Class1 typedef struct objc_class *Class; 1 struct
objc_class { 2 Class isa OBJC_ISA_AVAILABILITY; 3 4 #if !__OBJC2__ 5 Class
super_class ...
分类:
移动开发 时间:
2014-05-01 07:13:10
阅读次数:
502
this()用法:
一个构造函数可以使用this()来调用同一个类的另外一个构造函数。
一个构造函数最多只能调用一次this(),且this()只能作为构造函数的第一条语句。
super()用法:
一个构造函数使用super()来调用父类的构造函数。
如果没有为一个类编写构造函数,则编译器会自动构造一个不带参数的构造函数,且构造函数中只有一条语句super();。
如果为一个类...
分类:
编程语言 时间:
2014-04-30 22:25:39
阅读次数:
290
第四章java语法类1.类的构造函数2.同名的方法3.this4.类的继承(extends)(super的用法)5抽象类4.2.6
String类1.构造函数2.求字符串长度(length())3.字符串转换(tostring())4.字符截取(charAt();getChar();getByte(...
分类:
编程语言 时间:
2014-04-30 03:32:26
阅读次数:
689
- (void)drawRect:(CGRect)rect
{
[super drawRect:rect];
CGContextRef ctx = UIGraphicsGetCurrentContext();
CGContextSetRGBFillColor(ctx, .3, .3, .3, .1);
CGContextFillRect(ctx, self.boun...
分类:
其他好文 时间:
2014-04-29 13:33:22
阅读次数:
284
有时候无法从控件中拖拽一个按钮到storyboard,必须用编写代码方式添加按钮: 1 -
(void)viewDidLoad 2 { 3 [super viewDidLoad]; 4 // Do any additional setup after
loading the view...
分类:
其他好文 时间:
2014-04-28 15:01:42
阅读次数:
532