![]() |
|
#21
| ||||||||||||
| ||||||||||||
| cewy
__________________
My System: #
|
|
#22
| |||
| |||
| *Monty Python Moment brought on by Spamalot* "We're Knights of the Round Table We dance whene'er we're able We do routines and chorus scenes With footwork impeccable We dine well here in Camelot We eat ham and jam and Spam a lot We're Knights of the Round Table Our shows are formidable But many times we're given rhymes That are quite unsingable We're opera-mad in Camelot We sing from the diaphragm a lo-o-o-o-t In war we're tough and able Quite indefatigable Between our quests, we sequin vests And impersonate Clark Gable It's a busy life in Camelot I have to push the pram a lot"
__________________ I think I am a signature, therefore I exist! I believe a higher being has me as a signature... |
|
#23
| |||
| |||
| Quote:
http://www.netbeans.org/features/java/swing.html
__________________ I think I am a signature, therefore I exist! I believe a higher being has me as a signature... |
|
#24
| ||||||||||||
| ||||||||||||
| what the hell ? how am i spamming cheese this is my thread and it is a useful one to help ME with computer problems not do your good Charlotte polls!
__________________
My System: Cewy's wonder macine
|
|
#25
| ||||||||||||
| ||||||||||||
| Cew what book are you learning from? Is it any good? CG
__________________
__________________
"Dream as if you'll live forever, Live as if you'll die today" My System: Puter
|
|
#26
| |||
| |||
| i am learning from a book, it is brilliant and easy to understand i havent had any problem up until the packages add me on msn if you want to discuss this Cew27@violentvomit.net |
|
#27
| |||
| |||
| With packages, you run into access and privacy issues for the first time. With everything in the same folder, everything has access by default to everything else, exactly what you don't want in OOP. Think about this when you are programming: if I change one class file, how many other class files must I re-compile to get my program working? If it is more than a few, then your project is too tightly bound and will be difficult to maintain. If your book uses things like a.b=x; x=a.b; outside the "a" class, throw it away! Always: a.setB(x); x=a.getB(); or changing the data structure for a will screw up everything else. interfaces are very important in isolating classes too. If one class A needs access to another class B, try to do that via an interface that B implements, that way when you change A only that interface is recompiled, not B. Then A + that interface is portable to another application.
__________________ I think I am a signature, therefore I exist! I believe a higher being has me as a signature... |
|
#28
| |||
| |||
| I didn't really like Java, despite coming top of the class in it at uni. But when they told us to try out the Eclipse IDE (to test it for use as the default for the coming year), I spent two hours trying to get the hang of it, and by the end of the day had done twice as much successful coding compared to if I'd stayed in the text editor we were using! (We used TextPad, which can be linked to the Java compiler). Hated NetBeans, as did everyone else in the class. Those who tried Eclipse just loved using it. It rocks! |
|
#29
| |||
| |||
| what is so good about eclipse?? |
|
#30
| |||
| |||
| Netbeans, Eclipse, Textpad, I have tried them all but mostly used Textpad. (That way I was forced to understand the language.) Netbeans is on v6 now and looking good though. Funny, but I was more productive with Textpad than others who used IDEs! My colleagues who used Eclipse wished they could use Netbeans...
__________________ I think I am a signature, therefore I exist! I believe a higher being has me as a signature... |