1
vote
1answer
55 views
Accessing Outer class attribute from an instance of an Inner class.
Given the following code:
public class Outer
{
public final int n;
public class Inner implements Comparable<Inner>
{
public int compareTo(Inner that) throws C …
2
votes
4answers
287 views
Inner classes in C#
Until very recently I hadnt twigged that there was a difference between a normal class, and an inner class / sub class.
What is the relationship between an instance of an inner cl …
0
votes
3answers
107 views
Templates, nested classes, and “expected constructor, destructor, or conversion before ‘&’ token”
While working with some templates and writing myself a basic container class with iterators, I found myself needing to move the body of member functions from a template class into …
0
votes
3answers
87 views
Nested class forward declaration for template inheritance
What's the proper way to inherit from a template class with the template argument being a nested class within the inheriting class?
class SomeClass : public TemplateClass<Neste …
0
votes
4answers
80 views
Nested C# Classes - Calling Outer Method From Inner
I have a ViewController class called GamePlay. In GamePlay there is a nested class called MyPinAnnotationView. When MyPinAnnotation's method TouchesBegan() gets called, I want t …
0
votes
5answers
61 views
How to restrict access to nested class member to enclosing class ?
Hi,
Is it possible to specify that members of a nested class can be accessed by the enclosing class, but not other classes ?
Here's an illustration of the problem (of course my a …
1
vote
7answers
142 views
Where do you put collection classes?
I am not sure if there is already a nomenclature for this, but for the sake of this question lets define two terms: peer implementation or nested implementation to illustrate how y …
2
votes
3answers
103 views
When should I use/examples of nested classes?
Please retag this question to include languages to which it is relevant
So my java book had a whole chapter on nested classes, but ended on the note that you should only really us …
0
votes
2answers
94 views
Why is my nest class being seen as abstract?
I have an abstract base class which contains a private nested implementation. visual c++ is giving me the following error when I try to instantiate the non-abstract nested impleme …
1
vote
5answers
251 views
Can a nested C++ class inherit its enclosing class?
I’m trying to do the following:
class Animal
{
class Bear : public Animal
{
// …
}
class Giraffe : public Animal
{
// …
}
}
… but my com …
1
vote
2answers
73 views
Nested Classes w/ Same Name in Separate Assemblies Causing Serialization Headaches
I’m working with a poorly-engineered API. I have a class that I need to serialize, and I have control over the makeup of the class, but not the types that make up the properties th …
6
votes
9answers
217 views
When would you want to nest classes in C#?
Specifically, can anyone give me concrete examples of when or when not to use nested classes?
I've known about this feature since forever, but never had a reason to use it.
Thank …
0
votes
1answer
60 views
How does the .net framework nest forms in classes. (vb.net).
If I look at some classes in the framework, using reflector, I can see that forms and user controls are made private and nested into a parent class.
For instance, I have a control …
0
votes
4answers
168 views
is it good “form” to declare new classes in the same file ?
I code in Python a lot, and I frequently create classes. Now, I'm not sure if this is good Python form, but I just declare a class in the same file as my main().
class foo {
...
} …
0
votes
6answers
137 views
Refactoring: Nested class or separate classes?
Hi,
I'm currently doing some refactoring (+ adding new features) to some of our framework classes. The situation is that we have a single (god-like) class which does a bunch of lo …
