Tagged Questions

An anonymous class is a local class without a name. An anonymous class is defined and instantiated in a single succinct expression using the new operator.

learn more… | top users | synonyms

18
votes
2answers
4k views

Access “this” from Java anonymous class

Given the following code: public interface Selectable { public void select(); } public class Container implements Selectable { public void select() { ... } public void ...
15
votes
8answers
985 views

Why are only final variables accessible in anonymous class?

a can only be final here. Why? How can I reassign a in onClick() method without keeping it as private member? private void f(Button b, final int a){ b.addClickHandler(new ClickHandler() { ...
15
votes
10answers
15k views

Use of anonymous class in C#

We all know that, when we create anonymous class var Employee = new { ID = 5, Name= "Prashant" }; at run time it will be of type <>f__AnonymousType0<int,string> is there any way to ...
15
votes
12answers
3k views

Anonymous vs named inner classes? - best practices?

I have a class, let's call it LineGraph, that renders a line graph. I need to subclass it, but the derived class is only used in one place and is coupled to the class that uses it. So I am using an ...
14
votes
4answers
326 views

Anonymous struct in typedef of trait class

Sorry for the funny title. Prior to C++0x, there are restrictions in the use of function-local structs (“local types”) as template arguments. My question is essentially if similar restrictions apply ...
12
votes
11answers
2k views

Is usage of anonymous classes in Java considered bad style or good?

I know anonymous classes save typing, if it comes to implementing Listener and similar stuff. They try to be a replacement for some usages of closures. But what does the community think about the ...
11
votes
4answers
331 views

What's the difference between anonymous classes in Java and closures?

It looks like anonymous class provides the basic functionality of closure, is that true?
11
votes
3answers
286 views

Virtual tables on anonymous classes

I have something similar to this in my code: #include <iostream> #include <cstdlib> struct Base { virtual int Virtual() = 0; }; struct Child { struct : public Base { virtual ...
11
votes
8answers
4k views

Does Python have something like anonymous inner classes of Java?

In Java you can define a new class inline using anonymous inner classes. This is useful when you need to rewrite only a single method of the class. Suppose that you want create a subclass of ...
10
votes
2answers
316 views

How do I simulate anonymous classes in C#

I'm writing a small data structures library in C#, and I'm running into an architectural problem. Essentially I have a class which implements the visitor pattern, and there are many possible ...
10
votes
4answers
4k views

Anonymous delegate implementation in Objective-C?

Is it possible to declare anonymous implementations of things like Delegates in Objective-C. I think I have the terminology right, but here's a java example: myClass.addListener(new ...
9
votes
4answers
414 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
5answers
4k views

Cast to Anonymous Type

I had the following problem today, and I was wondering if there is a solution for my problem. My idea was to build anonymous classes and use it as a datasource for a WinForm BindingSource: ...
9
votes
3answers
713 views

What is this constructor call with following double braces?

Unfortunately I haven't coded Java for about five years and I absolutely can not remember how or why the following code is working. I stumbled across a similar example and broke it down to this. The ...
8
votes
2answers
110 views

Dynamic construction of anonymous class confusion

I'm trying to make instances of anonymous classes using reflection. But ocassionally I've seen strange behaviour during instantination. Please, look at these similar fragments of code public class ...
8
votes
3answers
2k views

How to pass parameters to anonymous class?

Is it possible to pass parameters, or access external parameters to an anonymous class? For example: int myVariable = 1; myButton.addActionListener(new ActionListener() { public void ...
8
votes
5answers
652 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
3answers
382 views

Anonymous class implementing interface

I have the following code inside a method: var list = new[] { new { Name = "Red", IsSelected = true }, new { Name = "Green", IsSelected = false }, new { Name = "Blue", IsSelected = false ...
8
votes
9answers
7k views

C#: Creating an instance of an abstract class without defining new class

I know it can be done in Java, as I have used this technique quite extensively in the past. An example in Java would be shown below. (Additional question. What is this technique called? It's hard to ...
7
votes
1answer
248 views

How to add @SerialVersionUID to a anonymous class?

I want to translate the following piece of code from Java to Scala: Foo foo = new Foo() { private static final long serialVersionUID = 12345L; } Class Foo is a an abstract class. How does the ...
7
votes
4answers
363 views

In Java, can an anonymous class declare its own type parameters?

Can an anonymous class declare its own type parameters?
7
votes
5answers
186 views

What does that Java construct do?

I new to java so bear with me if this is a ridiculously simple question but I am curious about this method call which has {code} being taken in - see code below for an example in the method ...
7
votes
11answers
344 views

Private variables/methods in anonymous class?

I have created an anonymous class in which I declare a few variables and methods. My java teacher tells me to make these private. I don't see how changing the modifier makes any difference since these ...
6
votes
5answers
182 views

Can anonymous class be used as return types in C++?

Is there any way to use anonymous class in C++ as return types? I googled that like this may work: struct Test {} * fun() { } But this piece of code doesn't complie, the error message is: new ...
6
votes
4answers
389 views

Can anybody explain the working of following code…?

Can anybody explain the working of following code...? interface myInterface{} public class Main { public static void main(String[] args) { System.out.println(new ...
5
votes
3answers
147 views

Passing final variables to anonymous classes

In final variable passed to anonymous class via constructor, Jon Skeet mentioned that variables are passed to the anonymous class instance via an auto-generated constructor. Why would I not be able to ...
5
votes
1answer
150 views

How are anonymous classes compiled in Java?

I've heard that Java bytecode actually doesn't support any kind of unnamed classes. How does javac translate unnamned classes to named ones?
5
votes
3answers
215 views

Allman-style anonymous classes

Any recommendations on how to use anonymous classes while staying consistent with Allman indent style? I don't really like anything I've come up with, e.g. // Pass as parameter. foo(new Clazz( ) ...
5
votes
1answer
229 views

Private inner class synthesizes unexpected anonymous class

When you compile a Java class with a private inner class, it appears that an anonymous class is automatically synthesized along with it for some reason. This class is sufficient to reproduce it: ...
4
votes
1answer
87 views

Why are all anonymous classes implicitly final?

According to the JLS: 15.9.5 Anonymous Class Declarations An anonymous class declaration is automatically derived from a class instance creation expression by the compiler. An anonymous ...
4
votes
3answers
111 views

Singletons, Enums and anonymous inner classes

As you may know, some people are declaring singletons with an Enum of 1 instance, because the JVM guarantees that there will always be a single instance with no concurrency problems to handle... Thus ...
4
votes
5answers
76 views

JDK compiler optimize use of anonymous classes with no instance variables?

I was curious, I see this kind of thing a lot: Arrays.sort(array, new Comparator<Integer>() { public int compare(Integer a, Integer b) { return Math.abs(a) < Math.abs(b); } ...
4
votes
2answers
103 views

Why can't I use <Class>.this in anonymous class?

I recently use this code, and realize that in anonymous class, I can't access the instance by .this, like this: Sprite sprFace = new Sprite() { @Override protected void onManagedUpdate(float ...
4
votes
2answers
300 views

Reference of enclosing object escape through anonymous class- java

I am reading Java concurrency in practice and the below examples are from that. And my questions are What do they mean by this reference escape?. What will be the problem? . How does the this ...
4
votes
6answers
288 views

Java: where should I put anonymous listener logic code?

we had a debate at work about what is the best practice for using listeners in java: whether listener logic should stay in the anonymous class, or it should be in a separate method, for example: ...
4
votes
4answers
106 views

preferred way to organize callbacks

In my Android project, I define a few callbacks to operate on button clicks, connectivity events, or UI events such as Dilaog.onShow(). For demo purposes, I have chosen a Runnable interface that must ...
4
votes
6answers
389 views

Access anonymous inner class variables

How to access i from the outer class? HashSet<Integer> hs=new HashSet<Integer>(){ int i=30; }; I can do it like this int k=new HashSet<Integer>(){ int i=30; ...
4
votes
4answers
920 views

Java: Anonymous inner class using a local variable

How can I get the value of userId passed to this method in my anonymous inner subclass here? public void doStuff(String userID) { doOtherStuff(userID, new SuccessDelegate() { @Override ...
4
votes
4answers
304 views

Java anonymous class efficiency implications

Is there any difference in efficiency (e.g. execution time, code size, etc.) between these two ways of doing things? Below are contrived examples that create objects and do nothing, but my actual ...
4
votes
2answers
273 views

What is this technique called in Java?

I'm a C++ programmer, and I was reading this site when I came across the example below. What is this technique called in Java? How is it useful? class Application { ... public void run() { View ...
4
votes
2answers
446 views

Is Java “caching” anonymous classes?

Consider the following code: for(int i = 0;i < 200;i++) { ArrayList<Integer> currentList = new ArrayList<Integer>() {{ add(i); }}; // do something with currentList } How ...
4
votes
2answers
469 views

Reference to Public Enum results in Anonymous Class

I'm getting an anonymous class at compile-time that I'm not expecting. Relevant code follows, then a more detailed explanation: Entirety of CircuitType.java: public enum CircuitType { V110A20, ...
4
votes
4answers
673 views

Unintended consequences of anonymous class created just for sake of adding instance initialization block

This is a question about Java code such as: List<String> list = new ArrayList<String>() {{add("hello"); add("goodbye");}} where the programmer has extended ArrayList anonymously just ...
3
votes
5answers
84 views

What is it called in Java when you create an instance on the fly?

In code, class MyObject { public String doThing() { return "doh"; } } class MyClass { private myObject = null; public MyClass() { myObject = new MyObject() { ...
3
votes
7answers
117 views

Anonymous Inner Classes: When are they (in)appropriate?

Take the following example. There's an object I want to use, call it a Doodad. Doodad elements have poorly implemented handling of browser events. Typical instantiation of a Doodad would be Doodad ...
3
votes
3answers
70 views

Is it possible to give a definition of a class in C++ during allocation, as is allowed in java

Or simply put can I do some thing like class A { public: virtual void foo() = 0; }; class B { public: A *a; b(){ a = new A() { void foo() {printf("hello");} } };
3
votes
2answers
75 views

class initialization function definition in java

I'm getting the error "Abstract methods do not specify a body" with the below code.... DCWebView.setWebViewClient(new MyWebViewClient() { @Override public abstract void ...
3
votes
3answers
197 views

Scala: Can I reproduce anonymous class creation with a factory method?

As far as I understand it, Scala creates an anonymous class if I create a class using the new keyword and follow the class name with a constructor: class MyClass { def doStuff() { // ... } ...
3
votes
2answers
103 views

Java Initialization Block

Can someone help me understand the following construct? I am having trouble understanding if this is an initializer or an anonymous class. I am not familiar with this syntax. JTable jt = new ...
3
votes
4answers
120 views

Java Anonymous Class as Utility Functions ? To design Arguments that are actually used, or one Argument (the bigger obj)

The Situation is that I have to use Function pointers for so many functions in Java (so I did it this way) and saved each anonymous class to a static variable of the Interface, so that I could use ...

1 2 3