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 the reason behind using constructors and destructors?
What is protected and friendly?
What is the static field modifier?
What is difference between public static and void?
Can two objects have same hashcode?
What is the smallest package in Java API?
What is the basic concept of java?
What is purpose of find feature?
What are exception handling keywords in java?
Is java free for businesses?
What is an empty list in java?
Explain pass by reference and pass by value?