How to make abstract class in Java?

In C++ we can make an abstract class by making all the methods pure virtual so that its object can not be instantiated.
How can we make a Java class abstract so that its object can not be instantiated?
Please tell me the easiest way to do it.
