// Student is the classclassStudent{Stringname="Momo";}// Main class to test the Student classpublicclassMain{publicstaticvoidmain(String[]args){// s1 is the object of the Student classStudents1=newStudent();System.out.println(s1.name);}}
constructor in java
java code:
// Student classclassStudent{Stringname;// Instance variable// ConstructorpublicStudent(Stringfullname){this.name=fullname;}}// Main class to test the Student classpublicclassMain1{publicstaticvoidmain(String[]args){// Create an object of the Student classStudents1=newStudent("Momo");// Print the nameSystem.out.println(s1.name);}}
On job as freelancer working with Java, JDK17+, Jenkins, Maven, Docker, K3S, Git, In my spare time I'm trying to blog about something useful(?) or try to hack on things I like.
Top comments (1)
Why not using a record; is easier: