Please anyone explain me class with one example. | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
0

Please anyone explain me class with one example.

I am unable to understand what is a class

3rd Oct 2020, 9:38 PM
<k>Kartik</k>
2 Antworten
+ 5
<k>~~~~~~~~~~~~</k> class is the basic concept of OOPs. A class is defined as a blueprint/prototype. You can create an individual object by use of a class. A class can represent the set of properties and methods they are common for all the objects of a class. In Java class, we define a pattern/blueprint which is followed by every object. Before moving further we must need to know what does java class consists? What’s the mean of blueprint here? Here is the blueprint print of java class that consists of a number of things. For more details with example: https://javagoal.com/class-and-object-in-java/
4th Oct 2020, 2:58 AM
Raina Dhankhar
Raina Dhankhar - avatar
0
Class contains data and methods in java.. In java, data and methods resides in class. class A { int i =1; public void print() ( System.out.println("hello" + i ) ; } } Here A is Class, And print is a method, Prints some text with i value..
3rd Oct 2020, 9:46 PM
Jayakrishna 🇮🇳