- 论坛徽章:
- 0
|
你看这个程序,c 定义了,什么也没有做呢,就调用一大圈了(初始化)。可以估计和C比效率丢失多少。
还有C++为什么允许在在任何地方定义变量(而不象C都要放到{}的开始)?
如果没有这一点就更惨了:
- func(int i)
- {
- A a, b, c;
- B b1, a1, c1;
- if(i < 0) return 0;
- .....
- }
复制代码
这样的程序 还叫程序吗?大部分时间i <0 应该直接返回0的,可他都做了什么?
- #include <iostream>
- using namespace std;
- class Base
- {
- public:
- int i[16];
- public:
- Base() {i[3] = 10; printf("enter Base %d\n", 12345678); };
- ~Base(){printf("leave Base"); };
- };
- class A:virtual public Base
- {
- public: int a;
- public:
- A() {a = 1; printf("enter A\n"); };
- ~A() {printf("leave A\n"); };
- };
- class B:virtual public Base
- {
- public: int b;
- public:
- B() {b = 2; printf("enter B\n"); };
- ~B() {printf("leave B\n"); };
- };
- class C:virtual public A, public B
- {
- public: int c;
- public:
- //C() {c = 3; printf("enter C\n"); };
- ~C() {printf("leave C\n"); };
- };
- int main(void)
- {
- C c;
- printf("sizeof c = %d, %d\n", sizeof(c), c.i[3]);
- return 0;
- }
复制代码
[ 本帖最后由 思一克 于 2007-9-17 09:44 编辑 ] |
|