In object-oriented programming (OOP), an inner class or nested class is a class declared entirely within the body of another class or interface.

learn more… | top users | synonyms (1)

0
votes
4answers
49 views

Logic Explanation behind this code- Java

I have this code written by someone else and I am having hard time to understand it. It is working fine and generates correct result but I couldn't understand how it works package you; import ...
0
votes
2answers
33 views

Inner generic type same as outer - compiler warning

So I have a tree class: public class Tree<T> : IEnumerable where T : IComparable<T> { private Node<T> root = null; ... private class Node<T> : ...
0
votes
1answer
36 views

How do I pass two results from separate AsyncTask inner classes to the same method in the main activity?

I hope I explained this issue correctly in the title. I have some inner classes that extend AsyncTask to read some JSON data and parse it. I have two separate ones for each search query the user ...
2
votes
4answers
43 views

How is it possible to create instance outside class of local inner class having private constructor?

Consider the following program: public class A { public static void main(String[] args) { class B { private B() { ...
4
votes
2answers
66 views

Strange compilation error with inner classes

The following code compiles as expected: class A { class B {} class C extends B {} } But, if we have class B extend class A, we receive a compilation error: class A { class B extends A ...
1
vote
1answer
35 views

Return inner-class from a inherited virtual template class in C++

Derived<T> inherits from Base<T>. Derived<T>::m should return an Derived<T>::Inner object. Whats the mistake, I don't get it. Consider the following code: template ...
1
vote
2answers
74 views

Why static final variables are accepted in inner classees?

I know that it's possible to do the following: public class Indeed{ private class inner { static final int try1 = 10; } } Why? what's the point of allowing such a declaration? ...
0
votes
1answer
40 views

What are synthetic fields in Java? [duplicate]

Can someone explain in an easy to understand way the importance of synthetic fields in Java. I recall reading it in context of non static inner classes where each such inner class instance maintains ...
1
vote
0answers
41 views

Java: Does an (anonymous) inner class ALWAYS have an implicit reference to the outer? Andorid: Will this cause a memory leak? [duplicate]

The java question: I have an outer class, a method of which is generating anonymous inner class. The anonymous inner class can 'outlive' the instance of the outer class. The anonymous inner class ...
1
vote
2answers
38 views

Firing events from inner class which extends SwingWorker

I am trying to fire events from inner class, but it is not working. This is my code: ABSTRACT MODEL: public abstract class AbstractModel { public PropertyChangeSupport propertyChangeSupport; ...
5
votes
3answers
52 views

Nested class in for loop, will there be n instances of the class?

I was wondering how a nested class works in a for loop: will the object of the class be destroyed after every for interation? will the instance of the class be destroyed automatically by "garbage"? ...
1
vote
2answers
58 views

Inner class and this() constructor

I have 2 classes: Date and Person Person has two attributes of Date class Case 1 Date class is separate class from Person class. I have this piece of code working properly: private String name; ...
-2
votes
2answers
57 views

Is there a good reason why you can or cannot have an inner interface within a Java class? [closed]

Is there a good reason why you can or cannot have an inner interface within a Java class? (like you would an inner class). I couldn't find a definitive answer with Google, but it appears as though you ...
0
votes
2answers
33 views

c++ Nested strategy patterne, pure virtual error

I was trying to make a nested strategy pattern. I get an error as when making the nested parent class purely virtual. Is this idea even possible? Example: class Jacobi { private: mat _V, _A; ...
3
votes
1answer
101 views

Enrich an inner class

I want to implement the enrich-my-library pattern for the inner class that will work for any instance of the outer class. Something like this: class Outer { class Inner(val x: Option[Inner] = None) ...
-5
votes
0answers
43 views

Inner class cause low cohesion..please help me to solve it [closed]

Inner classes are declared inside another class for a specific purpose of the outer class. Cohesion is the degree by which a class knows by itself. Does an inner class cause low cohesion?
0
votes
3answers
24 views

how to call inner class's method from static main() method

Trying to create 1 interface and 2 concrete classes inside a Parent class. This will qualify the enclosing classes to be Inner classes. public class Test2 { interface A{ public ...
1
vote
4answers
42 views

Not able to add new method to inner class

Why is the following piece of code not working? import java.util.Comparator; public class TestInner { public static void main(String[] args) { Comparator<String> comp = new ...
0
votes
1answer
44 views

Access variable update in inner class from outer class in Java

I have declared some variables in outer class and trying to get the value of this variables from inner class and do some operation on this variables in a method in outer class. I am sharing here how I ...
0
votes
1answer
41 views

Expected class, delegate, enum, interface, or struct in my code

I am studying the NerdDinner tutorial. And I get an error in my code. I think I mess up with inner class and the number of bracks. But I really dont have any idea on how to figure it out. Anyone can ...
0
votes
1answer
25 views

Call an activity method from a BroadcastReceiver class

I know i can do a inner receiver class to call all method from my receiver But my main activity is too damn big and do as lot of thing. So i will a class who extends broadcast receiver but who ...
1
vote
8answers
99 views

How to return multiple types from single method

I have a class named as Boss which contains different inner classes for diffrent types of bosses for my game . I have a Main class which uses a method getBoss() of Boss class ,to retrive appropriate ...
-1
votes
0answers
53 views

Constructor Error when calling Inner Class - Java

When trying to call an inner-class, I am getting 'cannot find symbol - constructor Node()'. Below is my code: public class Compress { ... public void compress(InputStream in, OutputStream out) ...
-5
votes
0answers
59 views

Why Object does not pass by reference? [duplicate]

Here is my testing code: public class Main { public static void main(String[] args) { MyClass myObject = new MyClass(); System.out.println("Right here, myObject.mIC should be ...
1
vote
0answers
39 views

KeyAdapter inner class… What exactly is Java doing here? [duplicate]

Whenever I need to grab input from the keyboard, I use the following KeyAdapter inner class technique. controls = new KeyAdapter() { public void keyPressed(KeyEvent e) { ...
-2
votes
2answers
42 views

Why is IntelliJ telling me this variable has not been initialized?

I am working on a class with an inner class My code: package com.solignis; public class Config { public static final Target target; class Target { public void create(String ...
1
vote
2answers
57 views

Inheriting InnerClass in java

public class InnerClass { class Inner { public void method() { System.out.println("Innerclass"); } } } class Sample extends InnerClass.Inner { ...
0
votes
2answers
44 views

Unable to setVisible(false) of JFrame

I am creating a Medical Shop Billing software in which I have three JFrames one of which I need to setVisible(false) on the click a JMenuItem. However each time I compile an error is displayed ...
2
votes
1answer
19 views

How do you get the enclosing instance of an instance? (com.sun.jdi)

com.sun.jdi is a package that lets you get information about a running VM, add breakpoints, look through stack frames, etc. How can I get the enclosing instance of another instance? For example, ...
1
vote
1answer
35 views

Java generics capture inner class

I have this code: public class UndirectedGraphImpl<N> { [...] public Iterator<Edge<N>> adj(N v) { return new AdjIterator(v); } private class AdjIterator ...
2
votes
1answer
57 views

Where are inner classes in memory?

So someone asked me to explain why the first scenario throws a compiler error and the 2nd scenario does not: class Outer { public Outer() { Inner i = new Inner(); class Inner { ...
5
votes
2answers
70 views

Is this an Inner Class

Can anyone explain how this code snippet works... The actual code itself is not relevant as it was from a short tutorial on using an MVP pattern for Android. My main question is how this code ...
3
votes
4answers
135 views

How to access fields declared inside anonymous object without reflection?

It's possible to make anonymous classes have new fields in Java: class A { public static void main(String[] args) { Object o = new Object() { public int x = 0; { ...
0
votes
4answers
80 views

How to access fields declared inside anonymous object?

Java lets you declare new fields inside anonymous classes, but I can't figure out how to access them from outside, even setting them to public doesn't let me. class A { public static void ...
1
vote
1answer
44 views

called from wrong thread + inner classes .. strange behaviour

I'd like to someone explain me why this fails... My activity has an inner class, AppHelper, that exports a function setThrobber. For simplicity I have omitted all the init code, etc.. This function ...
2
votes
2answers
73 views

Accessing outer class from inner class in java

I know about inner class and nested class from Java inner class and static nested class But can any body tell me what's the difference between Inner.redo1() and Inner.redo2()? Or Inner.print1() ...
0
votes
1answer
106 views

Lambda with inner class implementing an interface

I am not very experienced with lambdas yet but I begin to like them very much and use them where it makes sense and where I feel they are the way to go. Anyway, I have a class Tree that has a ...
0
votes
2answers
64 views

Java: How to get immediate parent(who is not the top level class) from an inner class?

I'm aware the differences between static nested class and inner class in Java. I'm talking about inner class. I'm also aware that we can use "OuterClass.this" to get the outer class from inner class. ...
0
votes
1answer
46 views

reflection - Accessibility of public static classes nested inside package local classes

In my example I have two packages: package1 contains class A (NOT declared as public) and its nested static class B (declared as public): package package1; class A { public static class B { ...
0
votes
0answers
31 views

Using inner class in outer class (ActionBarSherlock)

I have an outer class that extends ListActivity . I also want to extend SherlockActivity , so I created an inner class in outer class. Issue 1: innerclass myinnerclass = new innerclass (); is ...
1
vote
1answer
135 views

Dynamically Loaded Forms with Cell Factories in JavaFX: Memory Leaks Waiting to Happen?

I am designing a JavaFX app. I have made the decision to load the dialog forms/windows used to collect user input dynamically (from FXML) in response to a user event (eg. clicking a button) and then ...
1
vote
0answers
26 views

ActionBarSherlock as inner class

I'm able to extend SherlockActivity in an inner class and use it in outer class. BUT I couldnt use getSupportActionBar().setTitle("test") in outer class I tried to create new class in my outer class ...
0
votes
1answer
61 views

Is there a way to encapsulate a 2nd class into primary class?

I'm wondering how to have primary class show objects of 2nd class (keep 2nd class internal)? I'm using c#. Sort of like a wrapper. Is that a bad thing? Can somebody provide an example or links? ...
0
votes
1answer
35 views

saving data generated inside anonymous inner classes

I have a JTextField in my program which I hooked up a Keyboard Listener to through the use of an anonymous inner class. the listener clears the text box and saves the word currently on it. I want to ...
0
votes
0answers
36 views

How to access enclosing classes variables from an instance of a public nested class of the enclosing class in a nice manner?

Consider the following code example in java: public class Packet { protected int offset = 0; public int type; public Packet() { // This is the backward out-constructor. ...
0
votes
2answers
31 views

Extending classes with inner-classes (and also extending the inner-classes when going from one class to another) in java

I'm having problems with the relation between nested classes and subclasses. Consider the following code: class Graph { class Edge { ... } class Vertex { List<Edge> _edges; ...
1
vote
2answers
83 views

Java Inner Classes and HashMaps

So I am working on a Java project, and one of my classes uses inner nested classes (the TypesOfQuestions) and when I try to add a question from the inner class to the HashMap, it doesn't let me, and ...
3
votes
4answers
173 views

Why java Iterator interface should be implemented as inner class?

I recently read a book "The Java Tutorials" 3rd edition. It talks about inner class implementation as the picture shows. In the 3rd paragraph, it says "The Stack class itself should not implement the ...
4
votes
4answers
131 views

Java Inner Classes Design Benifits

In java, you can have inner classes. I'm curious from a design perspective if there are any benefits to this. My initial thoughts are that having a separate file with the class is cleaner in ...
2
votes
4answers
130 views

C++ STL fails to find comparator for nested class

I expected this code to work, but it fails to compile with GCC. It does compile if you lift the inner class out. #include <algorithm> template <typename T> struct Outer { struct Inner ...

1 2 3 4 5 13