Pregunta de entrevista de PayPal

How to implement a class without instance..?

Respuestas de entrevistas

Anónimo

7 ene 2014

public abstract class x {} // make class abstract

Anónimo

16 may 2012

We can use static class, you cannot create instance of static class usinf new keyword.

Anónimo

28 may 2012

Static key word cant be applied to a class unless its a inner class. So we can use a class without creating instance through static inner classes