Answer Posted / kapil dalke
anonymous class means its does not have a tag name.
as you know that...
when u declare the class
class Tcs
{
......
....
}
But its not anonymous class because it has class name(tag);
if u declare like that
class
{
............
.........
}
then its called aonymous class
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
What are the wrapped, classes?
What is a functional interface?
What does it mean that strings are immutable?
What is the dot operator?
What loop means?
What is the relationship between clipping and repainting under awt?
What is anti pattern in programming?
What are different types of classloaders?
How do you add an element to a hashset in java?
What is difference between fileinputstream and filereader in java?
What is api in java?
What is the difference between break and continue statements?
Can a class with private constructor be extended?
Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?
Is null a value?