Answers for "what is object and class in java"

2

class in java

Class is a blueprint or template which
you can create as many objects as you 
like. Object is a member or instance
of a class.
Class is declared using class keyword,
Object is created through
new keyword mainly. A class is a template
  for objects. A class defines 
object properties including a valid range
    of values, and a default value. 
A class also describes object behavior.
Posted by: Guest on December-05-2020
1

using class in java

public class HelloWorld {
  public static void main(String[] args) {
   
   
   class Number{
   
   	int number;
   
   	public boolean isPos(){
   		if(number > 0){
   			return true;
   		} else {
   			return false;
   		}
   		
   	}
   }
   
   Number myNumber = new Number();
   
   myNumber.number = 7;
   
   if(myNumber.isPos()){
   	System.out.println(myNumber.number + " is positive!!!");
   } else {
   	System.out.println(myNumber.number + " is not positive!!!");
   }
   
  }
}
Posted by: Guest on March-10-2020
1

using class in java

public class HelloWorld {
  public static void main(String[] args) {
    
    // how to use class in java
    class User{
    	
    	int score;
    	
    	// method that can be used outside the class
    	public boolean hasWon(){
    		if(score >= 100){
    			return true;
    		} else {
    			return false;
    		}
    	}
    }
    
    User dave = new User();
    
    dave.score = 20;
    
    System.out.println(dave.hasWon());
    
 
  }
}
Posted by: Guest on March-10-2020
0

java classes/objects

public class Main {
  int x = 5;

  public static void main(String[] args) {
    Main myObj1 = new Main();  // Object 1
    Main myObj2 = new Main();  // Object 2
    System.out.println(myObj1.x);
    System.out.println(myObj2.x);
  }
}
Posted by: Guest on September-10-2021

Code answers related to "what is object and class in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language