summaryrefslogtreecommitdiff
path: root/oop/06-static-properties
diff options
context:
space:
mode:
Diffstat (limited to 'oop/06-static-properties')
-rw-r--r--oop/06-static-properties/.gitignore1
-rw-r--r--oop/06-static-properties/Calculator.java29
-rw-r--r--oop/06-static-properties/MyApp.java25
3 files changed, 55 insertions, 0 deletions
diff --git a/oop/06-static-properties/.gitignore b/oop/06-static-properties/.gitignore
new file mode 100644
index 0000000..6b468b6
--- /dev/null
+++ b/oop/06-static-properties/.gitignore
@@ -0,0 +1 @@
+*.class
diff --git a/oop/06-static-properties/Calculator.java b/oop/06-static-properties/Calculator.java
new file mode 100644
index 0000000..7ec2851
--- /dev/null
+++ b/oop/06-static-properties/Calculator.java
@@ -0,0 +1,29 @@
+
+public class Calculator {
+ public static int x; // static (class) field
+ public int y; // instance field
+
+ public static int add(int a, int b) { // static (class) method
+ return a + b;
+ }
+
+ public static int subtract(int a, int b) { // static (class) method
+ return a - b;
+ }
+
+ public static double convertFromC2F(double cTemp) { // static (class) method
+ return cTemp*180/100 + 32.0;
+ }
+
+ public void setY(int y) { // instance method
+ this.y = y;
+ }
+
+ public int getXxY() { // instance method
+ return x * y;
+ }
+
+// public static int getXxY2() {
+// return x * y;
+// }
+}
diff --git a/oop/06-static-properties/MyApp.java b/oop/06-static-properties/MyApp.java
new file mode 100644
index 0000000..0137433
--- /dev/null
+++ b/oop/06-static-properties/MyApp.java
@@ -0,0 +1,25 @@
+
+public class MyApp {
+
+ /**
+ * @param args
+ */
+ public static void main(String[] args) {
+ System.out.println(Calculator.convertFromC2F(100.0));
+
+ Calculator.x = 5;
+
+ Calculator cal1 = new Calculator();
+ cal1.setY(10);
+ System.out.println(cal1.getXxY()); // prints 50
+
+ Calculator cal2 = new Calculator();
+ cal2.setY(11);
+
+ Calculator.x = 6;
+
+ System.out.println(cal1.getXxY()); // 60
+ System.out.println(cal2.getXxY()); // 66
+ }
+
+}