Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: jwo
  • Order by date
  1. jwo

    Java equivalent of C++ "cin >>" ?

    Given that this is quite a common process required for non-graphical user interfaces, you might want to create a class specifically for handling keyboard input. To use the class, you would do something like this... KeyboardInput keyIn = new KeyboardInput(); keyIn.prompt("Type in a...
  2. jwo

    inheritance

    If you wish only the subclasses of A to be able to manipulate the array, you should declare the array protected. This effectively makes it private except to any subclasses which have public access to it. If you wish objects created from X, Y and Z to have shared access to the same array stored...

Part and Inventory Search

Back
Top