上一页 1 ··· 28 29 30 31 32
摘要: 1.非静态方法重写public class Test { public static void main(String[] args) throws Exception { Tree pine = new Pine(); Tree oak = new Oak(); ... 阅读全文
posted @ 2015-05-11 18:45 快乐的总统95 阅读(1326) 评论(1) 推荐(0) 编辑
摘要: 今天看一篇学习Struts的博文,文章里面提到从生成的日志,结果,怎么鼓捣都看不到。心情也跟着烦躁了。于是晚饭后出去散步,冷静一下,然后决定晚上一定搞掂这个问题。这不,搞掂了,写篇博文记录一下。Struts2快速入门:http://www.yiibai.com/struts2/struts_quic... 阅读全文
posted @ 2015-05-07 21:10 快乐的总统95 阅读(5244) 评论(0) 推荐(0) 编辑
摘要: 【const】0.普通const对象定义在栈空间中{ int a = 10; const int b = 100; cout << &a << ' ' << &b;}Result: 0x22abec 0x22abe8注:Code::Blocks + Cygwin测得。1.对变量类型... 阅读全文
posted @ 2014-12-26 23:16 快乐的总统95 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 【explicit】1.用于抑制隐式转换,即:X x = 12; // errorX x(12); // ok2.只对一个实参的构造函数有效,但是,可以用多有多个实参的构造函数,目前没有意义;class X {public: explicit X(int x); explicit X(int x... 阅读全文
posted @ 2014-12-26 20:54 快乐的总统95 阅读(271) 评论(0) 推荐(0) 编辑
上一页 1 ··· 28 29 30 31 32