Difference between prefix and postfix forms of the
++operator?
Answers were Sorted based on User's Feedback
Answer / ranganathkini
The prefix ++ operator first increments the value by one and
then returns the new value.
The postfix ++ operator first returns the value and then
increments it.
| Is This Answer Correct ? | 36 Yes | 1 No |
Answer / ravikiran
prefix will increment first and assigns to the variable
postfix will assing the value to the variable and then
increments
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / uday ray
They behave differently when they are used in expressions on
the right hand side of an assignment statement. A prefix
operator first adds 1 to the operand and the result is
assigned to the variable on left. On the other hand, a post
fix operator first assign the value to the variable on left
and then increments the operands.
| Is This Answer Correct ? | 5 Yes | 2 No |
This is my code i have a doubt class ab implements a,b { public void add() { System.out.println("Hi") } } interface a { public void add(); } interface b { public void add(); } in this code i have two interface implemented in the class has same method.just i want to know which method of interface implemented in the class. interface a or interface b? confused me .
What does string intern() method do?
Explain about OOPS concepts and fundamentals.
what is difference between method overloading & method overridding with example?
What is the difference between jdk, jre, and jvm?
Can we extend the String class?
What is integers and example?
What is the best definition for data?
Find the value of a specified element of the array arr[i] where 0 <= i <= n-1
What is the difference between preemptive scheduling and time slicing in java programming?
What is casting?
How can an object be unreferenced?