what is default layout of JFrame class?
Answers were Sorted based on User's Feedback
Answer / la_di
The default layout manager of a JFrame (and a Frame to) is
BorderedLayout. Check this code:
System.out.println(new JFrame().getLayout());
| Is This Answer Correct ? | 47 Yes | 4 No |
Answer / jsrc1990
And Look this System.out.println(new JFrame().getContentPane
().getLayout());
| Is This Answer Correct ? | 5 Yes | 5 No |
What is finalize()? Is finalize() similar to a destructor?
What is double checked locking in singleton?
Default layout of Dialog object?
What is the use of jtable?
What’s the difference between unit, integration and functional testing?
What is the use of static import ?
Can multiple catch statements be used in exceptions ?
What are the topics in advance java?
What is Difference between Serializable and Externalizable in Java serialization?
How does varargs work in java?
State the significance of public, private, protected class?
What is Gang of four design patterns