What is a class in Java

What is a class in Java

A class is a prototype or a blueprint from which we can create objects.In real a world, there are many objects which are similar.Think of a class like cars.

How to implement class cars.

/**
 *
 * @author Eric
 * Site:www.techoverload.net
 * Date:10/26/2017
 */
public class Cars {
    
    int gearNumber=1;
    int speed=0;
    
    public void changeGear(int value)
    {
    gearNumber=value;
    }
    public void increaseSpeed(int increment)
    {
    speed=speed+increment;
    }
public void decreaseSpeed(int decrement)
{
speed=speed-decrement;
}
public void outPut()
{
System.out.println("Gear " +gearNumber +":  Speed " +speed);
}

Above class Cars,gearNumber and speed represent object state whereas changeGear, decreaseSpeed,increaseSpeed ,outPut define how the object will interact with outside world.

If you have realized,the above class does not have the main method.This is because above class is a blueprint for creating new objects.Example code that create two cars objects.




/**
 *
 * @author Eric
 * Site:www.techoverload.net
 * Date:10/26/2017
 */
public class CarsDemo {
 public static void main(String args[])
{
Cars car1=new Cars();//car object one
Cars car2=new Cars();//car object two

car1.changeGear(3);
car1.decreaseSpeed(30);
car1.outPut();

car2.changeGear(2);
car2.decreaseSpeed(40);
car2.outPut();

}   
}

Click here to Download Above Source Code 

COMMENTS

Name

android arrays cnna1 graphics java java control statements java.swing JButton JFrame JLabel JTextField laravel node.js OPP questions swing technology
false
ltr
item
Code WHIZZ: What is a class in Java
What is a class in Java
What is a class in Java
Code WHIZZ
https://code-whizz.blogspot.com/2017/10/what-is-class-in-java.html
https://code-whizz.blogspot.com/
http://code-whizz.blogspot.com/
http://code-whizz.blogspot.com/2017/10/what-is-class-in-java.html
true
5534598864497432585
UTF-8
Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy