Can I take instance of interface class?

SystemVerilog 2012 introduced new construct called “interface class”. Can I take instance of interface class in module ?

In reply to Sagar Shah:

Your question ios not very clear. Perhaps you should show some code. (Better yet: try to run it first!)
You never construct instances of interface classes. You implement a interface class with the implements keyword when you define another class that class is what gets constructed.

You certainly can instantiate an interface class variable in a module and assign that variable with a handle to a class object that implements the interface class.