What is the meaning of immutable regarding string?
No Answer is Posted For this Question
Be the First to Post Answer
Is it correct to say that due to garbage collection feature in java, a java program never goes out of memory?
Can you run the product development on all operating systems ?
How HashMap implemented in java? how it internally works when values are added or searched from hashMap?What is the difference betweenthe implementation of hashmap and Linked Hashmap?
What are the main features of java?
What is purpose of applet programming?
What is lossy conversion in java?
Draw a UML class diagram for the code fragment given below: public class StringApplet extends Applet { private Label sampleString; private Button showTheString; private ButtonHandler bHandler; private FlowLayout layout; public StringApplet() { sampleString = new Label(" "); showTheString = new Button (" Show the String"); bHandler = new ButtonHandler(); layout = new FlowLayout(); showTheString.addActionListener(bHandler); setLayout(layout); add(sampleString); add(showTheString); } class ButtonHandler implements ActionListener { public void actionPerformed(ActionEvent e) { samplestring.setText("Good Morning"); } } } Note: The methods need not be indicated on the diagram.
What do you mean by multithreaded program?
Why is stringbuffer called mutable?
Why set do not allow duplicates in java?
finalize() method?
Can a boolean be null java?