Why do inner class cannot have static declaration except
static nested class?
Answers were Sorted based on User's Feedback
Answer / vipul
Inner classes share a intimate relationship wth the outer
class which means to instantiate the inner class we need to
obtain the object of the outer class.in any case the inner
class contain any static member then we can access it only
with inner class name in that case we won't require its
object whch means we won't require the outer class
object.but java doesn't allow this if we want to access ny
if the inner class data member we must ahve outer class n
inner class object....queries r most welcomed..
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / adithya
Static have only one copy in memory. For class we have to
create objects. But for static we cannot create.
| Is This Answer Correct ? | 7 Yes | 9 No |
Can a static class implement an interface?
why is S capital in System.out.println ????
What do you mean by static variable?
Define "Access specifiers" in java.
Can keyword be used as identifier?
How do you write methodology?
Find the value of a specified element of the array arr[i] where 0 <= i <= n-1
How many ways can an argument be passed to a subroutine?
3 Answers Technological University of the Philippines,
What is serializable interface?
13 Answers Infosys, Probity Soft, Seed Infotech,
What is super?
What is command line argument in java?
What is type inference in java8?