why java does not have operator overloading?
Answers were Sorted based on User's Feedback
Answer / ashwini kumar vatsa
There are no concept of :: sign in java so
there is no concept of operator overloading.
| Is This Answer Correct ? | 3 Yes | 5 No |
Why is java so important?
What exactly is java?
Differentiate between stringbuffer and stringbuilder in java.
What is callable java?
What is isa relationship?
how to identify duplicate values in arraylist
Is int primitive data type?
Can we use return in constructor?
What is main string [] args?
Why is java called java?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }
Why does java doesnt suuport unsigned values?