Skip to content

Tag: methods

Calling methods and how to use them

The task I am trying to do is to utilise the given classes and methods are to take the money from the richest account and give it to the poorest so they have the same balance and to print “(name) has $(amount).” I am clueless on which method to use and anything I try gives an error or and incorrec…

Are values returned by static method are static?

Please consider this code Will this static method return a new instance of MyClass every time it is called? or it is going to return a reference to the same instance over and over? Answer Lol lol lol Declaring a method static means it is a class method and can be called on the class without an instance (and c…

ATM Machine in Java

I have been trying to figure out what is going wrong with this program I’m writing. Heres the full description of what I’m trying to do: Use the Account class created in Programming Exer- cise 9.7 to simulate an ATM machine. Create ten accounts in an array with id 0, 1, . . . , 9, and initial bala…

null pointer exception error calling method

I get this null pointer exception error if i call a method. if (farm1.cropStat(row, col) ) here’s the method here’s the initialization pls help 🙁 Answer Whenever you see a pattern that looks like this replace it with the equivalent It is the same thing. As far as the error goes, you need to revers…