Tagged Questions
The inner-classes tag has no wiki summary.
115
votes
11answers
72k views
Java inner class and static nested class
What is the main difference between a inner class and a static nested class in Java? Does design /implementation play a role in choosing any of these?
32
votes
9answers
8k views
Why Would I Ever Need to Use C# Nested Classes
I'm trying to understand about nested classes in C#. I understand that a nested class is a class that is defined within another class, what I don't get is why I would ever need to do this.
26
votes
10answers
896 views
Do java's Inner classes pose a security risk?
Recently the security team on my project released a secure code guidelines document, designed to be used as part of our code reviews. The first thing that struck me was an item that said "Do not use ...
25
votes
7answers
14k views
Java: Static vs non static inner class
What is the difference between static and non static inner class?
24
votes
5answers
3k views
Is it possible to make anonymous inner classes in Java static?
In Java, inner classes can be either static or not. If they are static, they do not contain a reference to the pointer of the containing instance (they are also not called inner classes anymore, they ...
21
votes
5answers
4k views
Strange syntax for instantiating an inner class
I didn't imagine that I would encounter radically new syntax in Java anymore at this stage, but lo and behold, I just encountered something:
The exact context and what the code below should do is ...
18
votes
9answers
530 views
Why use method local abstract inner classes
One of the legal modifiers you can use with method local inner classes is abstract.
For example:
public class Outer {
public void method(){
abstract class Inner{
}
}
}
Is ...
17
votes
3answers
430 views
How does “object.new” work? (Does Java have a .new operator?)
I came across this code today whilst reading Accelerated GWT (Gupta) - page 151.
public static void getListOfBooks(String category, BookStore bookStore) {
serviceInstance.getBooks(category, ...
14
votes
2answers
231 views
Outer vs. Super class
Does super has higher priority than outer class?
Consider we have three classes:
ClassA
ClassB
Anonymous class in ClassB that extends ClassA
ClassA.java:
public class ClassA {
protected ...
14
votes
3answers
923 views
Why does Java prohibit static fields in inner classes?
class OuterClass {
class InnerClass {
static int i = 100; // compile error
static void f() { } // compile error
}
}
Although it's not possible to access the static field with ...
13
votes
4answers
479 views
Usage of inner class
I can understand what inner class is and how to write program. My question is in what situation do programmers really need inner class?
13
votes
5answers
2k views
Static inner classes in scala
What is the analog in Scala of doing this in Java:
public class Outer {
private Inner inner;
public static class Inner {
}
public Inner getInner() { return inner; }
}
I specifically want ...
12
votes
11answers
1k views
Practical side of the ability to define a class within an interface in Java?
What would be the practical side of the ability to define a class within an interface in Java:
interface IFoo
{
class Bar
{
void foobar ()
{
...
11
votes
4answers
165 views
Why can't inner classes declare static members?
The Java Tutorial says that since an inner class is associated with an instance of the enclosing class, it (the inner class) cannot define any static members itself.
It's interesting for me why can't ...
10
votes
4answers
254 views
What exactly happens when you have final values and inner classes in a method?
I have came across many situation where I needed to pass value to an other thread and I founded out that I could do it this way, but I have been wondering how is it working ?
public void method() {
...
9
votes
5answers
87 views
How can I declare a friend function in a namespace that takes an inner class as a parameter?
Consider this code:
namespace foo {}
class A
{
class B
{
};
friend int foo::bar( B& );
};
namespace foo
{
int bar( A::B& )
{
}
}
G++ 4.4.3 tells me:
...
9
votes
2answers
243 views
Accessing private inner class in the same package
I have two compilation units:
public class OuterClass{
private static class InnerClass{
public String test(){
return "testing123";
}
}
public static void ...
9
votes
4answers
416 views
Why is an anonymous inner class containing nothing generated from this code?
When run through javac on the cmd line Sun JVM 1.6.0_20, this code produces 6 .class files
OuterClass.class
OuterClass$1.class
OuterClass$InnerClass.class
OuterClass$InnerClass2.class
...
9
votes
4answers
264 views
Java inner classes in c#
I have the following Java code:
public class A {
private int var_a = 666;
public A() {
B b = new B();
b.method123();
System.out.println(b.var_b);
}
public ...
9
votes
2answers
504 views
Closures in Java - syntax differences between the three major proposals?
Three major proposals for adding closures to the Java language has been presented:
BGGA (Bracha Gafter Gosling Ahé) also known as "full closures", by Gilad Bracha, Neal Gafter, James Gosling and ...
9
votes
7answers
10k views
Using Inner classes in C#
What are the best practices regarding the use and structure of inner classes in C#.
For instance if I have a very large base class and two large inner classes should I split them up into separate ...
8
votes
5answers
198 views
good programming style, two classes using each other's inner classes
I have class A with its inner class defined A1 and class B with its inner class defined B1. Do you think it is alright that class A in its implementation refers to B1 and class B refers to A1. Is it ...
8
votes
5answers
656 views
WHY an Anonymous class in Java can't implement multiple interfaces directly? Simply because of syntax or there is another reason?
In there an internal issue why java anonymous classes cannot implement and subclass at the same time? Or is it just because the syntax?
8
votes
5answers
831 views
Java: Non-static nested classes and instance.super()
I'm having a hard time wrapping my head around non-static nested classes in Java. Consider the following example, which prints "Inner" and then "Child".
class Outer {
class Inner {
...
8
votes
3answers
385 views
How does java implement inner class closures?
In Java an anonymous inner class can refer to variables in it's local scope:
public class A {
public void method() {
final int i = 0;
doStuff(new Action() {
public ...
8
votes
6answers
701 views
Why we use inner classes?
I want to ask you why we need inner classes and why we use them ?
I know how to use inner classes but I don't know why..
8
votes
3answers
6k views
Can inner classes access private variables?
class Outer {
class Inner {
public:
Inner() {}
void func() ;
};
private:
static const char* const MYCONST;
int var;
};
void ...
7
votes
3answers
99 views
Inner classes with method names and different signatures than the outer class
I know how to get this code to work, but I'm curious why the compiler is not able to figure out that the call is to the outer class method:
public class Example {
public void doSomething(int a, ...
7
votes
4answers
193 views
Why interface can only be declared in top-level class?
Alright, I know it's the rule:
According to JLS: 8.1.3 Inner Classes and Enclosing Instances, inner
classes may not declare static initializers or member interfaces.
Inner classes may not ...
7
votes
0answers
164 views
Why inner “template” class not allowed inside function? [closed]
Possible Duplicate:
Why can't templates be declared in a function?
void fun ()
{
template<typename T> struct InnerClass {};
}
gives errors.
error: expected primary-expression ...
7
votes
3answers
178 views
Origin of Java syntax for creating new instance of an inner class?
I'm curious as to the syntax choice for instantiating an inner class given an instance of the outer class in Java.
The syntax is:
OuterClass.InnerClass innerObject = outerObject.new InnerClass();
...
7
votes
4answers
313 views
How can “this” of the outer class be accessed from an inner class?
Is it possible to get a reference to this from within a Java inner class?
i.e.
Class outer {
void aMethod() {
NewClass newClass = new NewClass() {
void bMethod() {
// How to I ...
7
votes
2answers
613 views
Compile error on inheritance of generic inner class extending with bounds
I have a problem when compiling a generic class with an inner class. The class extends a generic class, the inner class also.
Here the interface implemented:
public interface ...
7
votes
2answers
2k views
java inner/outer class questions about outer class private variables access
I have the following java class:
class Outer
{
private Integer a;
private Long b;
class Inner
{
public void foo()
{
System.out.println("a and b are " + a ...
7
votes
4answers
2k views
Getting hold of the outer class object from the inner class object
I have the following code. I want to get hold of the outer class object using which I created the inner class object inner. How can I do it?
public class OuterClass {
public class InnerClass {
...
7
votes
7answers
2k views
Why cant we have static method in an inner class?
Why can't we have static method in an inner class ?
If I make the inner class static it works. Why ?
7
votes
3answers
1k views
How to refer to the outer class in another instance of a non-static inner class?
I'm using the Apache Commons EqualsBuilder to build the equals method for a non-static Java inner class. For example:
import org.apache.commons.lang.builder.EqualsBuilder;
public class Foo {
...
6
votes
3answers
283 views
Java Inner Class extends Outer Class
There are some cases in Java where an inner class extends an outer class.
For example, java.awt.geom.Arc2D.Float is an inner class of java.awt.geom.Arc2D,
and also extends Arc2D.
(c.f. ...
6
votes
3answers
113 views
Cannot refer/modify non-final variable in an innerclass
So I'm getting the error: "CANNOT REFER TO A NON-FINAL VARIABLE ROLE INSIDE AN INNERCLASS DEFINED IN A DIFFERENT METHOD". I want to be able to set the string roletype to whatever get's selected in ...
6
votes
3answers
128 views
Can an inner class of a template class be a non-template class?
I am making a template class with an inner utility class. All specializations of the template want the same inner class:
template<...> class Outer {
class Inner { };
};
That gives me ...
6
votes
3answers
120 views
Hierarchy of inner classes in Java
I am using a hierarchy of inner classes to represent some data in an application and I have run into an error message that I simply do not understand. My code can be boiled down to the following ...
6
votes
1answer
119 views
Local inner class
I have read through inner class tutorial and don't understand one thing. It is being said that inner class holds hidden reference to outer class, so I come up with several questions via this plain ...
6
votes
2answers
197 views
Where to put inner classes? [closed]
Some might like to argue that this is a candidate for the least important issue of all times. Yet code style is a very important topic for me, and I want to ensure that I write code in a readable way ...
6
votes
3answers
401 views
Never use public nested enums?
I recently came across a coding standard claiming that you should never use public inner enums/classes in Java. This is the first time I've encountered this convention, and haven't been able to find a ...
6
votes
6answers
310 views
Java - Should ActionListeners, KeyListeners, Etc, Always Be Declared In Inner Classes?
In all the Java source code examples I have looked at the listeners have always been declared in inner classes.
Why - what is the reason for coding the classes like this instead of having the ...
6
votes
2answers
471 views
what is the use of inner classes in java ? is nested classes and inner classes are same? [closed]
Possible Duplicate:
Java inner class and static nested class
what is the use of inner classes in java ? is nested classes and inner classes are same?
6
votes
2answers
939 views
Rails class << self
Hey. I would like to understand what "class << self" stands for in the next example.
module Utility
class Options #:nodoc:
class << self
def parse(args)
end
...
6
votes
2answers
360 views
Instantiating a non-static Java Inner Class from JRuby
So given the following java class:
class Outer
{
private int x;
public Outer(int x) { this.x = x; }
public class Inner
{
private int y;
public Inner(int y) { this.y = y; }
public ...
6
votes
3answers
1k views
Referring to the type of an inner class in Scala
The following code tries to mimic Polymorphic Embedding of DSLs: rather than giving the behavior in Inner, it is encoded in the useInner method of its enclosing class. I added the enclosing method so ...
6
votes
5answers
3k views
Is it possible to create an instance of nested class using Java Reflection?
Sample of code:
public class Foo
{
public class Bar
{
public void printMesg(String body)
{
System.out.println(body);
}
}
public static void ...