public class MyView extends View{ Bitmap
myBitmap; Paint paint; public MyView(Context context, AttributeSet attrs) {
super(context, attrs); this.ini.....
分类:
移动开发 时间:
2014-05-12 20:14:55
阅读次数:
402
Java
继承中的构造方法子类可以继承父类的构造方法,并遵循以下原则:子类构造的构成中必须调用其基类的构造方法。
2、子类可以在自己的构造方法中使用super()调用基类的构造方法。 使用this()调用本类的另外的构造方法。
如果调用super(),必须写在子类构造方法的第一行。 3、...
分类:
编程语言 时间:
2014-05-12 13:53:00
阅读次数:
320
首先,给Actionbar添加返回图标:代码: @Override protected
void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(R.layout.s.....
分类:
移动开发 时间:
2014-05-12 01:38:48
阅读次数:
379
self指针:self是oc面向对象设计中的一个特殊指针,相当于java中的this,但是比this强大,this只能访问实例对象的相关方法和成员变量,或者说this只代表实例对象;self不仅可以代表实例对象,还可以代表类对象;谁调用当前方法,self就代表谁;如果self用在了以"-"号的方法中...
分类:
其他好文 时间:
2014-05-10 07:00:03
阅读次数:
622
这篇文章总结了关于Java构造的常见??问题。
1)为什么创建一个子类对象要也需要调用父类的构造函数?
class Super {
String s;
public Super(){
System.out.println("Super");
}
}
public class Sub extends Super {
public Sub(){...
分类:
编程语言 时间:
2014-05-09 22:44:26
阅读次数:
443
http://blog.csdn.net/developer_zhang/article/details/88258221.普通弹框 -
(void)viewDidLoad { [super viewDidLoad]; UIAlertView *alertView =
[[UIAlertView.....
分类:
其他好文 时间:
2014-05-09 20:20:20
阅读次数:
323
public class InitServlet extends HttpServlet {
private static final long serialVersionUID = -
5826096764263027718L;
public void destroy() {
super.destroy();
}
public void init() throws Servl...
分类:
编程语言 时间:
2014-05-09 14:45:06
阅读次数:
324
1.attr.xml 2.在构造方法中使用public MyView(Context
context,AttributeSet attrs){ super(context,attrs); mPaint = new Paint(...
分类:
移动开发 时间:
2014-05-08 23:01:34
阅读次数:
453
I’ve worked with a lot of programmers over the
years — some of them super amazing, and some distinctly lackluster. As I’ve had
the pleasure of working...
分类:
其他好文 时间:
2014-05-07 00:33:56
阅读次数:
586
通过实现父类的方法
protected void onSaveInstanceState(Bundle outState)
{
super.onSaveInstanceState(outState);
String str = editText.getText().toString();
outState.putString("key", "message");
}
这样就保存到了B...
分类:
其他好文 时间:
2014-05-06 21:46:12
阅读次数:
405