What is the purpose of the static keyword in Java?
public class Utility {
public static int add(int a, int b) {
return a + b;
}
}
What is the purpose of the static keyword in Java?
public class Utility {
public static int add(int a, int b) {
return a + b;
}
}