Java Method Stubs
A method stub in this sense is a method with no real substance, i.e. it’s not doing what it is intended to do. Your getUserNum() method should return a user’s unique ID, but instead you’re defining a stub that simply returns -1 on every invocation. You can tell from your main() method, you’re supposed to be defining these two methods: So, … Read more