0
votes
2answers
28 views
Python data structure/object to model static multidimensional table
I'm just getting back into coding after a few year hiatus and I'm trying to model multi-tiered static forms in a way that lets me grab and perform operations on a specific form lev …
1
vote
3answers
137 views
Can’t access protected inner class while inheriting.
Reading through "Thinking in Java" i stuck in ex:6 of Inner Classes chapter.
Exercise 6: (2) Create an interface with at least one method, in its own package. Create a
class in …
0
votes
3answers
81 views
Java reflection: How can I retrieve anonymous inner classes?
Hello, everyone!
I have an anonymous inner class inside another class (SomeClass).
Both SomeClass.class.getClasses() and SomeClass.class.getDeclaredClasses() return empty arrays. …
2
votes
3answers
92 views
Null Object When Passed Into An Anonymous Inner Class
When passing a final object (A String in the code below) it shows up as null when printed from the anonymous inner class. However, when a final value type or straight final String …
0
votes
3answers
99 views
Subclassing Inner Class from Outer Class versus other Inner Class
I am befuddled why this is allowed
public class Foo {
class Bar extends Foo {
}
}
Yet this is not allowed
public class Foo {
class Bar extends Foo {
}
…
3
votes
2answers
152 views
Declare but not define inner struct/class - legal C++ or not?
Is following code legal C++ or not?
class Foo
{
class Bar;
void HaveADrink(Bar &bar);
void PayForDrinks(Bar &bar);
public:
void VisitABar(int drinks);
};
clas …
1
vote
4answers
141 views
Anonymous inner class in groovy
I am looking into the groovy-wicket integration and lack of anonymous inner classes seems to be a problem when writing the event handlers.
Is there a groovier way of writing this c …
1
vote
3answers
95 views
Friend methods/classes for AS3 packageless classes
Hi I'm wondering if I can have a packageless () AS3 class call a private method on the main class in the file. For example:
package demo
{
public class MyDemoClass
{
…
1
vote
3answers
93 views
Java: Name ambiguity between outer and inner class methods.
Suppose I have:
public class OuterClass() {
public class InnerClass {
public void someMethod(int x) {
someMethod(x);
}
}
public void someMethod …
1
vote
5answers
209 views
Does C# support inner classes? [closed]
Possible Duplicates:
Using Inner classes in C#
Inner classes in C#
Class declared inside of another class in C#
Does C# support the concept of inner classes? If so, wh …
1
vote
1answer
52 views
AspectJ Inner-Class Join points
Hi everyone,
I wonder is there a way to reach the code using aspect in "//do something" part?
Thanks in advance.
Turan.
public class Test {
private class InnerTest {
…
4
votes
4answers
749 views
Java: Static vs non static inner class
What is the difference between static and non static inner class?
0
votes
4answers
101 views
Accessing private class in operator<< in namespace
Hi,
I have a class CFoo with a private inner class CBar. I want to implement a stream ouput operator for CFoo, which in turn uses a stream output for CBar in it's implementation. I …
2
votes
1answer
88 views
How to use the type parameter of a generic parent inside of local classes?
Why can't I reference the type parameter of a generic parent class inside of contained local classes?
public class IsGeneric<T> {
public void doSomething(T arg) {
…
2
votes
4answers
256 views
Java inner class visibility puzzle
Consider the following case:
public class A {
public A() { b = new B(); }
B b;
private class B { }
}
From a warning in Eclipse I quote that: the java complier emulates the …
