summaryrefslogtreecommitdiff
path: root/oop/03-static-methods/Calculator.java
diff options
context:
space:
mode:
Diffstat (limited to 'oop/03-static-methods/Calculator.java')
-rw-r--r--oop/03-static-methods/Calculator.java29
1 files changed, 0 insertions, 29 deletions
diff --git a/oop/03-static-methods/Calculator.java b/oop/03-static-methods/Calculator.java
deleted file mode 100644
index 7ec2851..0000000
--- a/oop/03-static-methods/Calculator.java
+++ /dev/null
@@ -1,29 +0,0 @@
-
-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;
-// }
-}