002
27.05.2004, 22:05 Uhr
theosoft
|
@Pablo yep! @~menschmitfrage: guck' mal, ob folgendes zu deinen absichten passt:
C++: |
#include <iostream> #include <conio>
class one { public: int a; one(){} one(int z){ a=z; } };
class two : public one { public: int b,c; two (int x, int y, int z){ a=x; b=y; c=z; } void call(){ cout << a << b << c << endl; } };
int main (){ one eins(6); two zwei(1,2,3); zwei.call(); getch(); zwei.a = eins.a; zwei.call(); getch(); return 0; }
|
viel erfolg wünscht theo -- ifS (immer fröhliches Schaffen) theosoft |