Tagged Questions
The nested-class tag has no wiki summary.
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.
16
votes
14answers
786 views
What are reasons why one would want to use nested classes?
In this stackoverflow answer a commenter mentioned that "private nested classes" can be quite useful so I was reading about them in articles such as this one which tend to explain how nested classes ...
15
votes
4answers
8k views
Private inner classes in C# - why aren't they used more often?
I am relatively new to C# and each time I begin to work on a C# project (I only worked on nearly mature projects in C#) I wonder why there are no inner classes?
Maybe I don't understand their goal. ...
12
votes
7answers
4k views
Eclipse warning about synthetic accessor for private static nested classes in Java?
My coworker suggested making several of the Eclipse code-formatting and warning settings to be more rigorous. The majority of these changes make sense, but I get this one weird warning in Java. Here's ...
10
votes
4answers
337 views
Where and how to use nested classes?
I am thinking that if a class will be instantiated only in another class so it is right to use it nested in that class.I think this will help us good design.When i look at my project i have almost ...
9
votes
1answer
332 views
Reflection for nested classes
I see that most people who have been playing with ScalaSigParser, in an effort to ser/des idiomatic Scala case classes in a nice way, have avoided this issue, but I'd like to know if it's possible. I ...
9
votes
7answers
2k views
Why can't a class extend its own nested class in C#?
For example:
public class A : A.B
{
public class B { }
}
Which generates this error from the compiler:
Circular base class dependency
involving 'A' and 'A.B'
I always figured a nested ...
8
votes
1answer
450 views
Static nested class visibility issue with Scala / Java interop
Suppose I have the following Java file in a library:
package test;
public abstract class AbstractFoo {
protected static class FooHelper {
public FooHelper() {}
}
}
I would like to ...
7
votes
1answer
268 views
How does one “override” an inner class in Scala?
In the Scaladoc of class Enumeration#Val, I can read: "A class implementing the Value type. This class can be overridden to change the enumeration's naming and integer identification behaviour." I am ...
7
votes
5answers
1k views
C++ visibility of privately inherited typedefs to nested classes
In the following example (apologies for the length) I have tried to isolate some unexpected behaviour I've encountered when using nested classes within a class that privately inherits from another. ...
6
votes
2answers
62 views
Access to private member data of outer class in inner class
There is this code:
#include <iostream>
class Outer{
int a; // private data member of class Outer
public:
Outer(): a(55){}
class Inner{
public:
void fun(Outer ob){
...
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
5answers
1k views
Inner class in interface vs in class
What is the difference between these two innerclass declarations? Also comment on advantages/disadvantages?
case A: class within a class.
public class Levels {
static public class Items {
...
6
votes
9answers
382 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.
Thanks.
5
votes
6answers
268 views
c# Public Nested Classes or Better Option?
I have a control circuit which has multiple settings and may have any number of sensors attached to it (each with it's own set of settings). These sensors may only be used with the control circuit. I ...
5
votes
3answers
145 views
Access to parent's private properties through nested types in C#
Nested types in C# have the ability to access the parent's private properties. Is there a specific reason for having this language feature ? In my opinion this breaks encapsulation. If I make the ...
5
votes
3answers
194 views
Lambda with nested classes
I have posted this question a while ago but got a partial answer to my issue, so I thought I post more explanation hoping to get a more accurate answer. I have 2 classes:
public class Employee
{
...
5
votes
5answers
271 views
Why can't a class member's name be the same as one of its nested classes?
Or why is the following impossible:
class Material
{
class Keys
{
...
}
Material.Keys Keys { get; set; } // Illegal
}
I don't see any possible ambiguity. When accessed by ...
5
votes
1answer
432 views
Creating an instance of a nested class in XAML
in a XAML file (a WPF UserControl), is there a way to reference an inner class "B" defined in another class "A" ?
public class A
{
public class B
{
}
}
Something like :
<local:A.B ...
5
votes
4answers
264 views
Can a Static Nested Class be Instantiated Multiple Times?
Given what I know of every other type of static feature of programming––I would think the answer is 'no'. However, seeing statements like OuterClass.StaticNestedClass nestedObject = new ...
5
votes
3answers
452 views
Return pointer to nested inner class from generic outer class
I'm new to C++, so bear with me. I have a generic class called A. A has a nested class called B. A contains a method called getB(), which is supposed to return a new instance of B. However, I ...
5
votes
4answers
120 views
Nested types that are public
I'm curious as to what is good practice when it comes to certain scenarios involving nested types in .NET.
Lets say you have a Wheel class, and the Wheel class holds Bearing objects. A Bearing ...
5
votes
5answers
1k 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 compiler appears to ...
4
votes
5answers
117 views
Private nested static class - Good or bad practice?
Would it be considered a bad practice to nest a private static class inside of a non-static class?
public class Outer
{
private static class Inner
{
}
}
The idea here is that all ...
4
votes
3answers
109 views
Using c# generics in a nested class
Consider the following class structure:
public class Foo<T>
{
public virtual void DoSomething()
{
}
public class Bar<U> where U : Foo<T>, new()
{
public ...
4
votes
3answers
108 views
Are Local class, Inner class and Nested class are the same things in C++?
Are Local class, Inner class and Nested class mean same things in C++?
4
votes
1answer
151 views
Using boost::intrusive_ptr with a nested classes
Specifically, I need to declare (as I understand it) intrusive_ptr_{add_ref,release} as friends of my referenced class:
#include <boost/intrusive_ptr.hpp>
using boost::intrusive_ptr;
class ...
4
votes
5answers
105 views
Is there any use case for class inside function after introduction of lambda?
From the wikipedia article about Lambda functions and expressions:
users will often wish to define predicate functions near the place
where they make the algorithm function call. The language ...
4
votes
2answers
104 views
how to customize the nested class's methods in C++
I have a class A with nested class Inner_vector,
class A:
{
public:
class Inner_vector:public Vector
{
bool append(const class Element& element);
};
};
bool ...
4
votes
1answer
295 views
Is a service allowed to be nested into an application?
I have my application doing its application things (keeping records, handling singletons, etc...), and I have a nested service that will handle socket connections. I previously had the service in it's ...
4
votes
6answers
234 views
When do we use a nested class in C#
Would like to know when it is right to uses a nested classes in C#?
Do we have incidents in which the use of it is unjustified and therefore not correct?
If you can give examples for both situations
...
4
votes
2answers
293 views
C++ Private Nested Abstract Class
So maybe this is a dumb question and I'm over thinking this, but I have the following situation. I am making a "class Shell" which can run abstract "class Action" objects. It is the only class that ...
4
votes
3answers
456 views
C++: nested class of a template class
Consider the following code:
template < typename T >
struct A
{
struct B { };
};
template < typename T >
void f( typename A<T>::B ) { }
int main()
{
A<int>::B x;
...
4
votes
2answers
349 views
Static member class - declare class private and class member package-private?
Consider you have the following class
public class OuterClass {
...
private static class InnerClass {
int foo;
int bar;
}
}
I think I've read somewhere (but not the ...
4
votes
3answers
938 views
C#: Extension methods not allowed in nested static classes?
Why is this? I would find it really nice to be able to have some extension methods locked down to be used only within one of my classes. Don't really want to have certain extension methods available ...
3
votes
1answer
114 views
Throwing Checked Exceptions from Anonymous Inner Classes
What is the best practice way of getting Exception Transparency in Java when using an anonymous inner class to run some code.
A frequent pattern that I have seen in real code is using some pseudo ...
3
votes
1answer
109 views
Is the proper Rails inflection of underscore 'underscoreize'?
It seems that with Rails/AR and the Inflector methods added to String by ActiveSupport, I would expect that by default,
Nested::ClassDerived::FromAR.name.tableize == ...
3
votes
1answer
82 views
How does Ruby handle inheritance for nested classes?
In the following test case:
class Package
class Component
def initialize
p [:initialize,self]
end
end
end
class Package_A < Package
end
class Package_B < ...
3
votes
6answers
348 views
Nested Python class needs to access variable in parent/owner class
I've seen a few "solutions" to this, but the solution every time seems to be "Don't use nested classes, define the classes outside and then use them normally". I don't like that answer, because it ...
3
votes
3answers
157 views
Nested class with generics
The project I'm currently working on requires me to create a tree data structure.
Below is the sample how I've tried to achieve this functionality. I've decided to create a child node collection as a ...
3
votes
1answer
104 views
Errors nesting vectors<> within vectors<>
I'm having a problem nesting vectors within vectors, the equivalent of a 2D array in C. I have tried the code demonstrating this posted on numerous website, to no avail.
class Board
{
public:
...
3
votes
2answers
379 views
Pattern matching on nested types in Scala
I am trying to implement something that is effectively an enumeration in Scala. I would like to do that using case classes so that the compiler is able to detect any non-exhaustive pattern matches.
...
3
votes
2answers
278 views
Java: static nested classes and reflection: $ vs
If I have a class com.example.test.Enum2.Test as in the code below, why does getCanonicalName() return com.example.test.Enum2.Test but Class.forName() requires "com.example.test.Enum2$Test" as an ...
3
votes
5answers
129 views
Keeping part of public nested class visible only to the nesting class
I have a nested class in c++ which has to be public. But I need some of its methods visible to the outer world, and the rest visible only to the nesting class. That is:
class set {
public:
class ...
3
votes
7answers
115 views
I'm getting StackOverflowException error in my nested class on set function of property C#
public class Class1
{
public Class1()
{
prop = new Class2();
}
public Class2 prop { get; set; }
public class Class2
{
...
3
votes
7answers
160 views
Is it a good idea to have a class nested inside an interface?
Is it possible to have an inner class inside the interface in java ???
3
votes
3answers
365 views
Nested Class member function can't access function of enclosing class. Why?
Please see the example code below:
class A
{
private:
class B
{
public:
foobar();
};
public:
foo();
bar();
};
Within class A & B implementation:
A::foo()
{
...
3
votes
5answers
475 views
Java: limit to nest classes?
A very poor style to code but sometimes unavoidable. It is an extreme example. So
is there some limit for nesting classes?
are they equivalent?
how do you deal with such situations? Create ...
3
votes
3answers
966 views
PHP Nested classes work… sort of?
So, if you try to do a nested class like this:
//nestedtest.php
class nestedTest{
function test(){
class E extends Exception{}
throw new E;
}
}
You will get an error ...
3
votes
4answers
377 views
Nested class or not nested class?
I have class A and list of A objects. A has a function f that should be executed every X seconds (for the first instance every 1 second, for the seconds instance every 5 seconds, etc.).
I have a ...