0
Which operator must be used to invoke the methods of an object?
2 odpowiedzi
+ 2
.
+ 1
If it's static, you can just call the method. But if it's non-static, you need to create an object and then call the method by first calling the object then followed by the dot operator and then followed by the method.