It seems for a good reason I need to switch to Scala! So, excuse me if my question might seem novice.
It seems that Any in scala is the supper class of all types and might be considered as an Object type equivalent in Java. But type Any is abstract, while Object is not. More concretely, I can not write the following code in scala (since class Any is abstract and cannot be instantiated):
val k:Any = new Any();
while I can write the following code in Java:
Object k=new Object();
What should I use if I need a concrete equivalent type of java Object type?