// 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.
Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.
Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.
A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!
On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.
Top comments (2)
Why not using a record; is easier:
ok i'll remind it thank you so much for the suggestion