I'm new to Java programming. While reading through the code of an open source project, I came across a line of code which I can't understand:
final Type typeOfMap = new TypeToken<Map<String, Object>>() {}.getType();
My questions are:
- I usually call a constructor like this:
final Type typeOfMap = new TypeToken<Map<String, Object>>()
. I have never seen it followed by other pieces of code such as{}.getType()
. What kind of syntax is this? - Is
{}
an object? Why can you call a function on it?
P.S. Type
is java.lang.reflect.Type
, and TypeToken
is com.google.gson.reflect.TypeToken
.
It is a syntax for Anonymous inner classes.
Yes, you get an object from it. That's why a method can be invoked on it.
Anonymous classes are useful when you need a specific behaviour from a class for a single time. Like in below example, if you invoke sayHello on normal A object, then it will return Hello. But, the behaviour of sayHello method gets changed for object of anonymous class and it returns Bonjour this time.
Output
Gson documentation for TypeToken also mentions about the reason and usage of anonymous class. The reason for usage in TypeToken class is that it is used to retrieve the type of token at runtime. As otherwise generic type information is not available at runtime because of type erasure.
https://www.javadoc.io/doc/com.google.code.gson/gson/2.6.2/com/google/gson/reflect/TypeToken.html