Answer Posted / naru
String object is immutable that's why security maintain of
file chech .when connection is establic first os check the
String object if string is mutable that is big pain in
security issue...
| Is This Answer Correct ? | 2 Yes | 4 No |
Post New Answer View All Answers
What is string buffer?
What is a variable analysis?
Which is better list or arraylist in java?
Why string is immutable with example?
What is the use of java?
How to use Media tracker Class.
How many types of keywords are there?
what is a working thread? : Java thread
What is singleton pattern?
How to do encapsulation in java?
How do you calculate square roots?
What is the exception hierarchy in java?
Which is the class in java?
Can private method static?
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (