Java support what type of parameter passing ?

Answers were Sorted based on User's Feedback



Java support what type of parameter passing ?..

Answer / srikanth

Java supports always call-by-value.

Is This Answer Correct ?    21 Yes 1 No

Java support what type of parameter passing ?..

Answer / pranab dutta

passed by value

Is This Answer Correct ?    15 Yes 2 No

Java support what type of parameter passing ?..

Answer / johnjot

call by value only..when objects are passing as args, then
the reference is passed in by value..

Is This Answer Correct ?    10 Yes 1 No

Java support what type of parameter passing ?..

Answer / chandrarekha

all the primitive or the simple datatypes(int,float,boolean
etc) are passed as call by value whereas the abstract
datatypes(class objects) are by call by reference.....
for example...
class classA
{
String name;
}
class classB
{
classA a=new classA();
a.name="java";
call(a);//a is an object of classA
void call(classA x)
{
x.name="JAVA";
}
public static void main()
{
......

this is call by reference...

Is This Answer Correct ?    10 Yes 2 No

Java support what type of parameter passing ?..

Answer / devarathnam c,kotagudibanda(po

Hi... By default java supports "pass by value" in case of
primitive datatypes.
In case of objects it supports "pass by references"

Is This Answer Correct ?    8 Yes 4 No

Java support what type of parameter passing ?..

Answer / rajkumar ksr college

It would
support const parameters like C++.
For instance:

Is This Answer Correct ?    3 Yes 1 No

Java support what type of parameter passing ?..

Answer / eesha

Please refer to:
http://java.sun.com/docs/books/tutorial/java/javaOO/arguments.html

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

what is difference between Action messages and Action errors?

3 Answers   Bio Imagene, TCS,


What is dynamic binding(late binding)?

0 Answers  


How infinite loop is declared?

0 Answers  


What are null interfaces? Give some examples?

2 Answers  


What is private public protected in java?

0 Answers  


How many bits is a word?

0 Answers  


What is the advantage of functional interface in java 8?

0 Answers  


Marker interface means , interface which has no methods.Then what is the necessity of its usage.I read "it tells the compiler that it should be treated differently ". "It is used to store state of an object". But still am not clear.Please explain clearly.

2 Answers  


What are the restrictions imposed by a Security Manager on Applets?.

0 Answers  


Does set allows null in java?

0 Answers  


Why java is a platform independent? Explain

0 Answers  


What is string length in java?

0 Answers  


Categories