I decided to try my hand at java.....so far i'm not impressed....i just spent the last hour trying to figure out why my button wasn't showing up in the window.. everything compiled fine, without any warning....still, no button.........

i fixed it, but appearantly, the (sole) constructor which created the button, wasn't getting called.....

i had...
Code:
public class MyClass{
        public void MyClass(){...} 
}
what's wrong with this picture?


should i expect a lot more of this out of java?