1. 函数的复写(override)2. 使用super调用父类的成员函数1. 函数的复写
修改父类中成员函数, 就叫复写2. 使用super调用父类的成员函数 this()就可调用本类的构造函数, this.函数名 即可调用本类的成员函数
super()可调用父类的构造函数, super.函数名 ...
分类:
其他好文 时间:
2014-05-27 01:14:31
阅读次数:
289
protected void onCreate(Bundle savedInstanceState)
{ super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_INDETERMINATE_PRO...
分类:
其他好文 时间:
2014-05-24 00:02:33
阅读次数:
227
IGeometry geo = feature.ShapeCopy;
IGeometryCollection pPolyline = geo as IGeometryCollection; ...
分类:
其他好文 时间:
2014-05-23 12:25:26
阅读次数:
349
内存管理重写dealloc方法@implementation Dog#pragma mark
当一个对象从内存中移除的时候,就会被调用- (void) dealloc{ NSLog(@"----Dog被销毁了------");
//一定要调用super的方法,写在该方法的最后 [sup...
分类:
移动开发 时间:
2014-05-23 12:03:27
阅读次数:
347
AbstractPrincipal Mel-Spectrum Components
(Feature)Temporal Pooling Functions (Model)Single Hidden Layer Neural Network,
thus Multi-layer Perceptron (...
分类:
其他好文 时间:
2014-05-23 10:37:57
阅读次数:
306
接着上一篇博文,继续分析Ext4磁盘布局中的元数据。1.7超级块超级块记录整个文件系统的大量信息,如数据块个数、inode个数、支持的特性、管理信息,等待。如果设置sparse_super特性标志,超级块和块组描述符表的冗余备份仅存放在编号为0或3、5、7的幂次方的块组中。如果未设置sparse_s...
分类:
其他好文 时间:
2014-05-20 11:24:38
阅读次数:
474
-(void)viewDidload{[super viewDidLoad]; scrollView
= [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, 320, 460)];
scrollView.backgroundColor = [.....
分类:
其他好文 时间:
2014-05-19 20:21:40
阅读次数:
284
域和静态方法不具有多态性:public class Test3 { public static
void main(String[] args) { Super sup = new Sub(); System.out.println(sup.field);
System.out.println...
分类:
其他好文 时间:
2014-05-19 14:28:59
阅读次数:
314
程序代码:
bool HelloWorld::init()
{
//////////////////////////////
// 1. super init first
if ( !CCLayer::init() )
{
return false;
}
CCSize visibleSize = CCDirector::s...
分类:
其他好文 时间:
2014-05-18 10:10:11
阅读次数:
299
super.onDestroy();
的问题。注意:没有显式地在自己的方法中调用父类Activity的onDestroy是会报错的。我的问题很简单,在我覆盖的onDestroy(),方法中需要调用父类的onDestroy。我就是不懂调用的时机,就像下面两种。protectedvoidonDestro...
分类:
移动开发 时间:
2014-05-17 19:13:46
阅读次数:
767