Codeschnippseln für diese Übung

Dependencies:   mbed

Revision:
0:76d9c940a794
Child:
1:c65875995efb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/class3.cpp	Tue Oct 06 16:36:31 2020 +0000
@@ -0,0 +1,20 @@
+class MyClassC
+{
+    private:
+        const int a; // Zuweisung von Konstanten und Referenzen ist nur in der
+        int& b;     // Initialisierungsliste, nicht im Konstruktorrumpf zulässig.
+        int c;
+        int d;
+ 
+    public:
+        MyClassC(int& refB) : b(refB), a(2)
+        {
+            c = 0;
+            d = 0;
+        }
+ 
+        static int foo() 
+        {
+            return 10;
+        }
+};
\ No newline at end of file