Consider the statement:int anInt = Integer.parseInt("649");You can tell that parseInt() is a(n) ____ method because you use it with the class name and not with an object.

Respuesta :

Answer:

static

Step-by-step explanation:

Static methods or variables are called on the class name and not on the object (although some programming languages like C# allow static methods to be called on objects). In fact, you do not need to have created any object before you call a static method. It is quite possible to have all the methods in a class as static, in which case the class is effectively static. Such classes are usually utility classes. Most times, they are not instantiable.

Instance methods are called using the name of an object.

ACCESS MORE
EDU ACCESS