Question
Suppose there is a class called Thing and you attempt to call a method called myThing() like this: Thing.myThing(); Which of the following is true?
Suppose there is a class called Thing and you attempt to call a method called myThing() like this:
Thing.myThing();
Which of the following is true?
Group of answer choices
this will not compile because you need to use an object not a class in front of the . when you call a method
this will work but only if there is only a single object of class Thing because otherwise Java cannot tell which you intend to call
this will work but will call the myThing() method for all objects of the class Thing that have been created at that point
this will work provided that myThing() is not static
this will work provided that myThing() is static
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started