Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~287 People Reached
Favorite Tags

2 Posted Topics

Member Avatar for networkZombie

I suggest you find the book "Programming with objects - A comparative presentation of object-oriented programming with C++ and Java" by Avinash C.Kak. That is probably the most thorough book you can find on the subject.

Member Avatar for meo_beo
0
129
Member Avatar for meo_beo

Hi, I wrote a simple Java program that allows changing the background color of itself by clicking on the radio button, like this: [code] import java.awt.*; import java.awt.event.*; class Colors extends Frame implements ItemListener, ActionListener{ Label lblTxt = new Label("Choose a color:"); Label lblInform = new Label(); CheckboxGroup cbg = …

Member Avatar for quuba
0
158

The End.