- Strength to Increase Rep
- +3
- Strength to Decrease Rep
- -0
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Re: This is my second assignment in my Early Object Java class: http://www.ncssm.edu/~morrison/currentClasses/404/assess/specs/ColorCalculator.php Try it; it's lots of fun | |
Re: The class `Local` does not have a display method. However class `Simple` does. You can instantiate `Simple` in your main method and call that instance's `display` method. | |
Re: Note the change I made here. In a GUI app, you should make its main routine be a `run()` method. You need to do this so that all events received by your app go in an orderly fashion into the event queue. The `invoke later` method runs your run method. … | |
Re: Always capitalize class names. This is a universally-observed convention. Failure to do so confuses other programmers. | |
Re: The FileWriter has an optional second boolean argument. If you pass it `true`, it will operate in append mode. | |
Re: The "Illegal Start of Expression" compiler screech is almost always caused by a curly-brace leak. | |
Re: Start here typdef struct { char key; int count; }count_entry; This will do a character-integer pair, for example ('a', 3) for 'a' seen 3 times. |