3. nur Zugewiesen bzw I2C erzeugt

Dependencies:   mbed

main.cpp

Committer:
Hutzi
Date:
2020-10-06
Revision:
4:0f310f0fa9ac
Parent:
3:ee41300c3883
Child:
5:15aeb54a9126

File content as of revision 4:0f310f0fa9ac:



#include "mbed.h"

// Hutter_6.10.2020_ Aufgabe_1

class TestKlasse{
    
  
    public:
        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,true);

int main() {
    
    int y;
    y=ausgabe.getx();
    
    printf("bei 15 passts: %d\n",y);
    
}