summaryrefslogtreecommitdiff
path: root/oop/06-static-properties/Calculator.java
diff options
context:
space:
mode:
authorKamal Wickramanayake <kamal@inbox.lk>2026-02-22 19:43:58 +0530
committerKamal Wickramanayake <kamal@inbox.lk>2026-02-22 19:43:58 +0530
commitbaaba4a281b7d54e6b5d7767989c303b854b6932 (patch)
tree16201b64e9c8f20d7fa394c715f4ca5df51e9e08 /oop/06-static-properties/Calculator.java
parentae4cf7c9f0a0b90d02166b43402e67b7d4ad4dca (diff)
Directory rename
Diffstat (limited to 'oop/06-static-properties/Calculator.java')
-rw-r--r--oop/06-static-properties/Calculator.java29
1 files changed, 29 insertions, 0 deletions
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;
+// }
+}