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 |
Which of the classes will have more memory allocated?
What is rmi and steps involved in developing an rmi object?
Is it possible to declare abstract class as final?What happens if we do so?
Can we declare an anonymous class as both extending a class and implementing an interface?
8 Answers College School Exams Tests, JVA, TCS, Wipro,
What are sets in java?
how to write a program for chat function using core java
Why is inheritance used in java?
Why should we use singleton pattern instead of static class?
Is break statement can be used as labels in java?
What modifiers may be used with an inner class that is a member of an outer class in java programming?
Is it possible to override private or static method in java?
what is the difference between sleep() and Wait()?