Instantiation The new keyword is a Java operator that creates the object As discussed below, this is also known as instantiating a class Initialization The new operator is followed by a call to a constructor For example, Point(23, 94) is a call to Point's only constructor The constructor initializes the new objectThe word instantiate means to represent by an instance Instantiation is made useful when creating objects in Java Objects are created from a class It is the new operator that we use to instantiate a class by allocating memory for creating a new object and then providing a reference to that memory locationSo, we can't actually instantiate an interface in Java Thanks for reading )
Cannot Instantiate The Type Webdriver Stack Overflow