+ 2
reference type
can someone explain the meaning of reference type using the simplest way?i'm still new to java
7 Answers
+ 28
A reference type is a data type thatâs based on a class rather than on one of the primitive types that are built in to the Java language. The class can be a class thatâs provided as part of the Java API class library or a class that you write yourself.
+ 27
You can study this in the course.
https://www.sololearn.com/Course/Java/
+ 6
Here's a good read for you. đ
https://blog.penjee.com/passing-by-value-vs-by-reference-java-graphical
+ 5
A reference type is something that is passed by reference. IE is an Object.
int[] a = {6};
someMethod(a);
void someMethod(int[] b){
b[0] = 2; // a becomes {2}
}
+ 2
@Nithowat.i have no idea what u are saying.could you provide an example if possible?thankyou
+ 2
@Nithowat.i dont understand the course that's why im asking for help here..
+ 1
@Zephyt Koo that is the best explanation so far