2
votes
3answers
112 views
Anonymous class question
Hi,
I've a little doubt over this line:
An anonymous class cannot define a constructor
then, why we can also define an Anonymous class with the following syntax:
new class-name ( [ …
0
votes
2answers
82 views
Java: Access local variables from anon inner class? (PriorityQueue)
I want to use a PriorityQueue to do a topological sort on a graph. For brevity, I'd like to use an anonymous inner class for the comparator. However, I need access to the graph g in order to determine …
2
votes
1answer
75 views
Serializing a list of anonymous delegates.
This question may be very similar to my one, but I cannot see the answer I need in it. I have a class, called CASM, that has a List<Action>. I want to serialize this class (using the …
0
votes
3answers
96 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.
I couldn't find …
1
vote
4answers
104 views
Creating a dynamic anonymous types vairables
Hello,
I would like to ask if i can create a anonymous type variable and later on i can add more Properties? like
var x = new { Name = "Ahmed" }; and want to add Age to it?
how i can do this?
Another …
1
vote
4answers
166 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 code
import …
4
votes
4answers
298 views
c#: Cast to Anonymous Type
Hi
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:
…
1
vote
1answer
113 views
Column of BindingSource with Anonymous Class as DataSource
Is there any method to select a column of the current row of a BindingSource whose DataSource is an anonymous class?
var userResults = from u in dataContext.Users
join c in …
1
vote
3answers
376 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 …
3
votes
9answers
987 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 …
5
votes
1answer
118 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:
…
1
vote
5answers
216 views
Uninstantiated Anonymous Classes in Java
It's been about 6 years since I've written Java, so please excuse the rust.
I'm working with a library method that requires that I pass it Class objects. Since I'll have to invoke this method a …
1
vote
2answers
117 views
Real advantages of .Net delegates over Java’s anon classes?
I know a lot of the uses of .Net delegates can be emulated in Java by using a combination of interfaces and anonymous classes, but are there any situations where delegates have a real advantage and …
3
votes
3answers
283 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 …
5
votes
11answers
570 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 …
