How do you use final keywords and final variables in Java?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Java programmers are unable to alter the value of variables of basic data types when they use final keywords with them.
When final is used with non-primitive variables, the members of the referred object cannot be altered.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Java programmers are unable to alter the value of variables of basic data types when they use final keywords with them.
When final is used with non-primitive variables, the members of the referred object cannot be altered
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a buffer in java?
What is the difference between the prefix and postfix forms of the ++ operator?
How does java enable high performance?
What is the is a and has a relation ship in oops concept in java?
What is callable java?
What is the difference between private & public & friendly classes?
What about main thread in java?
What is math floor in java?
What are null interfaces in JAVA ? and give me some examples?
What is JVM ? use of JVM?
What is indexof?
I have a string like _a01_a02_a03_ and another string like _2_1.5_4_ as input.I want to extract a01,a02... to a string array and 2,1.5,etc to a double array with a01 corresponds to 2 and a02 to 1.5 etc. Need code in core java.. Can you do it?