Why stringbuilder is not thread safe in java?
Answer / Kumud Kinakar
StringBuilder is not thread-safe because it does not synchronize its operations. This means that multiple threads accessing a single StringBuilder instance can lead to inconsistent results.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can we able to pass objects as an arguments in java?
What are the types of java languages?
What is object in java?
What is application tier?
What is java in detail?
what is difference between requestprocessor and request dispatcher?
how many ways to create Thread and which one is good? runnable interface ot Thread class?
. What are the differences between constructor and method of a class in Java?
What is anagram in java?
What is mean by collections in java?
Interface A { String test(); } Interface B { int test(); } Create a class AB which must implements both A & B interfaces.
What is the method used to get the absolute value of a number?