can we make a class static without using static keyword?

Answers were Sorted based on User's Feedback



can we make a class static without using static keyword?..

Answer / rampoojan gupta

no without static key word not define the static class..

Is This Answer Correct ?    18 Yes 2 No

can we make a class static without using static keyword?..

Answer / mamta subramanian

We cannot declare any outer class as static. There would a
compiler error if we do so.
But if it is an inner class we can declare it as static.
and it act as a static object of outer class.

Is This Answer Correct ?    8 Yes 2 No

can we make a class static without using static keyword?..

Answer / shadab alam

yes we can make a class static without using static keyword
We can prove it by following program.

we konw that static member of a class can be accessed by
using the class name now I will do it without static
keyword specify in sub class

Like a.abc.add()
where a is class name and abc is also class name but
without static keyword.But it executed successfully.
this proves that inner class is a static class.


using System;
static class a
{



public static void my()
{
Console.WriteLine("outer class's method");
}
class abc
{


public static void add()
{
Console.WriteLine("Inner class's
method");
}
}
public static void Main()
{

a.my();
a.abc.add();
}


}

Is This Answer Correct ?    6 Yes 3 No

can we make a class static without using static keyword?..

Answer / darwin

no not at all possible with this present java framework
format.. it coukd be possible only in future if they
enhances that option to do so.. and additionallly no outer
class can be static. you can also check by compiling in
java compiler...

Is This Answer Correct ?    1 Yes 0 No

can we make a class static without using static keyword?..

Answer / raja

see Shadab Alam, let me clear,first of all an outer class
can't be a static it could be either public or abstract or
final only, unfortunately Java Compiler can't allow other
than these three, so we can make any inner class as static.

and we can't make the behaviour of a class as static
without using "static" keyword. Thank u for asking this one.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More OOPS Interview Questions

What is difference between data abstraction and encapsulation?

0 Answers  


WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET

1 Answers  


What are the 5 oop principles?

0 Answers  


Definition of Object Oriented Programming in single line?

33 Answers   Impact Systems, Q3 Technologies, TCS,


What is ambiguity in inheritance?

0 Answers  






What is a macro? And how is a macro same as a template?

4 Answers  


What is a null tree?

0 Answers  


what is difference between objects and function

1 Answers  


Why do we use polymorphism in oops?

0 Answers  


What is balance factor?

0 Answers  


what is difference between objects and function

3 Answers  


How to calculate the age from the date of birth by using the program?

2 Answers   Accenture,


Categories