#32 Array of Objects in Java

  Рет қаралды 168,770

Telusko

Telusko

Күн бұрын

Пікірлер
@sirfmgamer5655
@sirfmgamer5655 4 ай бұрын
you sir have just got another subscriber. beautiful explanation and I wrote so many lines of code until you showed how to simply used those three attributes for ALL of the student objects instead of making one attribute for each object. definitely i am going to check out all of your other videos too. thank you.
@elikmtl
@elikmtl Жыл бұрын
The best explanation of Array of Objects in Thank you!🙏
@AbdulAhad-uj1nf
@AbdulAhad-uj1nf Жыл бұрын
First comment from #SriLanka.Thanks you so much for your help
@tejaswinigm2606
@tejaswinigm2606 Жыл бұрын
I have a list which I got from DB query based on few conditions, which contains below location details... I want o/p as segregated locations i.e all cities and zipcodes into its state, all states into country Cou1 state1 city1 zip1 Cou1 state2 city2 zip2 Cou1 state1 city 3 zip3 O/p sld be as Cou1 State1 Cit1 - zip1 Cit3 - zip3 State2 Cit2 - zip2
@HariPrasad-qe3hd
@HariPrasad-qe3hd Жыл бұрын
More precise way for(Student s: students) { System.out.println(s.name + ":" + s.mark); }
@jooyeonsimp
@jooyeonsimp 6 ай бұрын
So array is going to store objects values in place of objects ?? Basically in a array each element consists of 3 different student values
@JehanSaren
@JehanSaren Жыл бұрын
Nice sir, can you do this using with constructor?
@shivarajme
@shivarajme 4 күн бұрын
good one
@owl166
@owl166 11 ай бұрын
Can we use collection framework to create an array of objects.....?? Thanks in advance
@simikhuzwayo
@simikhuzwayo 7 ай бұрын
3:40 Good explanation
@pierreoosthuizen9444
@pierreoosthuizen9444 Жыл бұрын
What EDI do you use?
@dhruvinbhatt6414
@dhruvinbhatt6414 Жыл бұрын
I think it's VS CODE
@informationtechtips5391
@informationtechtips5391 Жыл бұрын
Vs code
@royalgaming3132
@royalgaming3132 Жыл бұрын
VS Code (Visual studio code)
@Rahul-d7q3r
@Rahul-d7q3r Жыл бұрын
EDI or IDE 😂
@Jake-cb8dm
@Jake-cb8dm Жыл бұрын
@@Rahul-d7q3rman I thought I was losing my mind thinking the community changed the name
@ankitbaranwal883
@ankitbaranwal883 Жыл бұрын
What is the difference b/w array of objects and collection functionality wise
@singirikumar2782
@singirikumar2782 Жыл бұрын
Collection functionality wise ... If u create a object as collections U can access lot of methods to perform CRUD operations on data Which is in collection..nd also growable in nature size wise nd it follows some data Structures...i.e data in some order ..ascending or descending but if u create object as array ...it is fixed u cannot add new data and u cannot delete and allows it won't follow data structures When ever u r requirement is fixed heterogenous data and no need of delete of data .. we will go for Object array ..
@actandrepeat
@actandrepeat Жыл бұрын
Is the length property a static attribute of the array object?
@aninditadas7348
@aninditadas7348 Жыл бұрын
Hello Sir, Getting below error error: cannot find symbol Student s1=new Student(); ^ symbol: class Student location: class ArrayObject ArrayObject.java:4: error: cannot find symbol Student s1=new Student(); ^ symbol: class Student location: class ArrayObject 2 errors MY code class ArrayObject{ public static void main(String a[]){ Student s1=new Student(); } }
@aninditadas7348
@aninditadas7348 Жыл бұрын
I got it solved, by creating a class using Student. Below is the code class Student{ String name=""; int age= 0; }
@kazialhasan5433
@kazialhasan5433 Жыл бұрын
Getting error when Student class is not Static. But Navin didn't have it as static. What am I doing wrong?
@pankajSingh-nh2qi
@pankajSingh-nh2qi Жыл бұрын
public static void main(String[] args) use this if showing error
@kvelez
@kvelez Жыл бұрын
public class Main{ public static void main(String[] args) { Student stud = new Student(); stud.roll = 1; stud.marks = 88; stud.name = "Kevin"; Student stud2 = new Student(); stud2.roll = 2; stud2.marks = 78; stud2.name = "Marco"; Student stud3 = new Student(); stud3.roll = 3; stud3.marks = 90; stud3.name = "Justin"; Student[] students = new Student[3];//Array with references students[0] = stud;//Manual objects students[1] = stud2; students[2] = stud3; for (Student student : students) { System.out.print(student.name + " " + student.roll + " " + student.marks + " "); } } } class Student { int roll; int marks; String name; }
@faltuCoder35
@faltuCoder35 Жыл бұрын
seson 2 kha hai bhae
@YokutjonTohirova-mu5gk
@YokutjonTohirova-mu5gk 3 ай бұрын
🔥🔥🔥🔥
@RaviYash-fs2gh
@RaviYash-fs2gh 11 ай бұрын
I have two doubts here, 1.When we create an object the class name should be same 2. When we create the three student objects you didnt intialize the data types for rollno, name, marks. If anyone knows please rectify my doubts. Thanks in advance
@SPragnasya
@SPragnasya 11 ай бұрын
Okay let me address your doubts: 1. Yes, when you create an object in Java, the class name should be the same. For example: Imagine you have a class called Student. If you want to make an actual student object, you say Student st = new Student();. This naming consistency helps others (and yourself) easily understand what type of object is being created. class Student { // Class definition } Student st = new Student(); // Creating an object of the Student class 2. Coming to your second doubt, consider the below example : class Student { int rollNo; String name; double marks; } public class Main { public static void main(String[] args) { Student st1 = new Student(); st1.rollNo = 1; st1.name = "John"; st1.marks = 90.5; Student st2 = new Student(); st2.rollNo = 2; st2.name = "Jane"; st2.marks = 85.0; } } In the Student class, you have defined three instance variables: int is the data type for rollNo, String for name, and double for marks. These are the data types for the respective fields. In the Main class, you are creating two instances of the Student class (st1, st2) and initializing the data for each object. Hope you understood 😊!
@0shaad
@0shaad Жыл бұрын
How without proper {} this code is working, You open { in last class and in main method but didn't close it
@niksyt8666
@niksyt8666 Жыл бұрын
i got an error
@puruagni1927
@puruagni1927 8 ай бұрын
Why are you not updating VS Code? Please update VS Code.
@LokendraArya21
@LokendraArya21 2 ай бұрын
It's sir choice 😅
@jitendratiwari4292
@jitendratiwari4292 Жыл бұрын
In hindi?
@sneha-yp2ew
@sneha-yp2ew Жыл бұрын
Is Kiran is your best friend???😁
#33 Enhanced for Loop in Java
5:27
Telusko
Рет қаралды 114 М.
#52 Method Overriding in Java
7:57
Telusko
Рет қаралды 171 М.
How to have fun with a child 🤣 Food wrap frame! #shorts
0:21
BadaBOOM!
Рет қаралды 17 МЛН
Andro, ELMAN, TONI, MONA - Зари (Official Audio)
2:53
RAAVA MUSIC
Рет қаралды 8 МЛН
Caleb Pressley Shows TSA How It’s Done
0:28
Barstool Sports
Рет қаралды 60 МЛН
#34 What is String in Java
7:24
Telusko
Рет қаралды 162 М.
#53 Packages in Java
12:20
Telusko
Рет қаралды 241 М.
#37 Static Variable in Java
7:06
Telusko
Рет қаралды 185 М.
How to make Microservices Communicate?
10:24
YourTechBud Codes
Рет қаралды 42 М.
The Dome Paradox: A Loophole in Newton's Laws
22:59
Up and Atom
Рет қаралды 1,1 МЛН
#26 Stack And Heap in Java
12:37
Telusko
Рет қаралды 298 М.
#40 Encapsulation in Java
11:42
Telusko
Рет қаралды 215 М.
#29 Multi Dimensional Array in Java
13:08
Telusko
Рет қаралды 192 М.
Generics In Java - Full Simple Tutorial
17:34
Coding with John
Рет қаралды 1,1 МЛН