methods in set in java code example
Example 1: how to use the this keyword in java
class Other{
public double num;
public Other(int num){
this.num = num;
System.out.println(num);
//print 5 to the console
}
}
class scratch{
public static void main(String[] args) {
Other method = new Other(5);
System.out.println(method.num);
//prints 5.0 to the console
}
}
Example 2: using class in java
public class HelloWorld {
public static void main(String[] args) {
// how to use class in java
class User{
int score;
}
User dave = new User();
dave.score = 20;
System.out.println(dave.score);
}
}