Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is an anonymous class?

Answers were Sorted based on User's Feedback



what is an anonymous class?..

Answer / guru

anonymous class are inner classes that cant not have a
class name and constructor also.

Is This Answer Correct ?    6 Yes 0 No

what is an anonymous class?..

Answer / 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

what is an anonymous class?..

Answer / dipesh

Suppose

Class My implements InetrfaceName{

My my=new InterfaceName(){ write mehtod impl here of
interface};

here we r creating instance of class (we dont know name)to
my

Is This Answer Correct ?    3 Yes 1 No

what is an anonymous class?..

Answer / nitin kumar jha

anonymous class is a class which is defined on run time
that it;

Is This Answer Correct ?    3 Yes 1 No

what is an anonymous class?..

Answer / venki

3) Anonymous classes:
1. A class which doesn’t have any name is called anonymous class and which is a type of inner class. It can be either member class or local class.
2. It is a sub class that extends a class or implements an interface but not both. It can implement only one interface.
3. These are used where implementation of methods various from one object to another object. Anonymous class is final class.
4. public class Demo{
A a=new A();
a.m1();
A 1=new A(){ void m1(){ --- }};
a1.m1();
}
On compiling this above program the java compiler generates A.class, Demo.class and Demo$1.class (Anonymous class).

Is This Answer Correct ?    0 Yes 0 No

what is an anonymous class?..

Answer / narasimha

hi ,
look into this


Anonymous type is the type that is created anonymously.
Anonymous type is a class that is created automatically by
compiler in somewhere you can’t see directly while you are
declaring the structure of that class. Confusing? Let me
show you one example.

view plaincopy to clipboardprint?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication1 {
class Program {
static void Main(string[] args) {
Person _person = new Person { ID = 1, FirstName
= "Michael", LastName = "Sync" };
Console.WriteLine("Name: {0} {1}", _person.FirstName,
_person.LastName);
Console.ReadLine();
}
}
public class Person {
public int ID { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
}
}

Is This Answer Correct ?    0 Yes 3 No

Post New Answer

More Core Java Interview Questions

Do I need to import java.lang package any time? Why?

1 Answers  


What is return type in java?

0 Answers  


What is static method with example?

0 Answers  


Can we use catch statement for checked exceptions when there is no chance of raising exception in our code?

0 Answers  


Why a dead thread occurs?

0 Answers  


What is the use of join method?

0 Answers  


what is synchronization? : Java thread

0 Answers  


Can we synchronize static methods in java?

0 Answers  


What is protected in java?

0 Answers  


Tell me the difference between an applet and a Japplet?

1 Answers  


how to print the below in java?thanks in advance.... * * * * * * * *

3 Answers  


what is the diff b/w arraylist and vector?

6 Answers   Code Genesis, Genesis, Sprintine Labs,


Categories