- 1
WHAT ARE CLASSES IN JAVA
I AM CONFUSED WITH THE USE OF CLASSES IN JAVA PLEASE HELP ME
3 Answers
+ 5
You just started he Java lesson. Please be patient and go through the course.
Do you have any questions about a particular lesson? Which one? What is unclear?
+ 7
Requesting admin access to keyboard...
Request succeeded!
Disabling CAPS LOCK...
CAPS LOCK disabled!
+ 7
In Java everything starts with a class definition.
⢠The class keyword:
class User {
// class definition goes here
}
⢠Can declare variables and create instances (objects):
User dev = new User();
⢠A class is made up of members:
fields and methods.
**You should follow For Beginners and how they progress with Java learning.đ