菜鸟之路
qiqipchy
这个作者很懒,什么都没留下…
展开
-
2013-8-9
#include #include #include #include #include using namespace std;void main(){list container;string my;while (cin >> my){container.push_back(my);}list::iterator j=container.begin();//注意j定义的位置,不能放在刚开始就开原创 2013-08-09 10:47:33 · 421 阅读 · 0 评论 -
子类为什么不能重写父类的静态方法
"重写"只能适用于实例方法.不能用于静态方法.对于静态方法,只能隐藏(形式上被重写了,但是不符合的多态的特性),“重写”是用来实现多态性的,只有实例方法是可以实现多态,而静态方法无法实现多态。例如: Employee man = new Manager(); man.test(); 实例化的这个对象中,声明的man变量是E转载 2015-03-30 10:28:41 · 1033 阅读 · 1 评论