Stefan Hutter
/
Hutter_6_10_2020_v3
3. nur Zugewiesen bzw I2C erzeugt
Diff: main.cpp
- Revision:
- 4:0f310f0fa9ac
- Parent:
- 3:ee41300c3883
- Child:
- 5:15aeb54a9126
--- a/main.cpp Tue Oct 06 16:39:14 2020 +0000 +++ b/main.cpp Tue Oct 06 16:56:36 2020 +0000 @@ -8,25 +8,30 @@ public: - TestKlasse(double wert) : _messwert(wert) { - - _messwert=0; - } - - void gibAus(){ - printf("Messwert ist %f\n ",_messwert); - } - - - private: - double _messwert; + TestKlasse(int x, bool wahr) : _x(x), _wahr(wahr) { + _x=0; + _wahr=false; + } + + int getx(void) { + + return _x; + } + + private: + int _x; + bool _wahr; }; -TestKlasse ausgabe(15); + +TestKlasse ausgabe(15,true); int main() { - ausgabe.gibAus(); + int y; + y=ausgabe.getx(); + + printf("bei 15 passts: %d\n",y); }