answersLogoWhite

0


Best Answer

Anonymous classes, basically, have no name. It combines the class declaration and the creation of an instance of the class in one step.

If an event handler is not shared by multiple components there is no need to declare a class to handle the event. The handler can be implemented with the use of an anonymous inner class. i.e. :

button1.addActionListener(new ActionListener() {

public void actionPerformed(ActionEvent e) {

JOptionPane.showMessageDialog(null, "You clicked button1.");

}

});

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the meaning of anonymous classes for events in java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What ananomus classes in java?

An Anonymous class in Java is one that does not have a name. It is usually created inside a class


How many classes should be included in each java file?

You can only have one non-inner public classes per java file and that class name must match the filename. The java file can also have any number of inner classes and anonymous classes.


What is the meaning of deplyoment IN JAVA?

Deployment is the process of copying the compiled Java classes to a server or client. Once deployed, the server is able to run those classes (as in Java servlets), or serve those files to clients (as in Java applets), or be executed as programs (as in Java desktop applications).


What are sealed classes in java?

Final classes are sealed classes in java I guess.


What is Difference between java and core java?

Java or Java SE comes with the standard library, with all the crazy classes to make life easy. Java Core does not come with most of these classes, so that it is a lot smaller.


What is a collection of related classes called in java?

a package


Why do you extend classes in java?

We use the classes in java to reuse their coding for the child classes.So as to save our time and development overhead.


How many pre-built or predefined classes are there in JAVA?

In java 1.1 version 250 classes are there java 1.2 version 500 classes are there i don't about other versions. but i want to know other version classes also. please post any body known these other version classes list....


How garbage collector works on anonymous class in java?

about the garbage collector it is in java and it is mainly responsible for dynamic memory manegement


What is global variable in java?

A local class is declared locally within a block of Java code.You can even have classes declared inside a method. such classes are called local classes.


How many types of classes are found in java?

1.Outer Classes 2. Inner Classes


Why we write java program using classes?

Classes are well organised functions in java which help discriminate between two different functions.