Tilted Forum Project Discussion Community

Tilted Forum Project Discussion Community (https://thetfp.com/tfp/)
-   Tilted Knowledge and How-To (https://thetfp.com/tfp/tilted-knowledge-how/)
-   -   whats the best way to learn JAVA? (https://thetfp.com/tfp/tilted-knowledge-how/68829-whats-best-way-learn-java.html)

articsky 09-12-2004 03:11 AM

whats the best way to learn JAVA?
 
Hi im an I.T student trying to learn java. i understand some concepts but dont understand most. i can explain some things to the teacher about concepts but when it coems to writting code and exams i just dont know how to write it. i always need a guide. what can i do to improve?ive tried to read a lot. i read over and over but i just dont understand 100%, mayb only about 50%. what can i do?

adysav 09-12-2004 03:26 AM

Practice ;)
There are some tutorials on the Sun website, the more you do something, the more natural it will become.

MSD 09-12-2004 04:14 AM

You could probably try asking in the Tilted Programming forum.

irateplatypus 09-12-2004 11:12 AM

i took 6 hours of java during my freshman year and ran into the same problem you seem to have. i could wrap my mind around the concepts of what i wanted to happen but i could not translate that into keyboard strokes.

my advice: i ended up doing fairly well in there after i downloaded some open source simple java apps and scripts. find some easy ones that you KNOW what they're supposed to do and read how they accomplished it. it's basically reverse engineering their work in your mind... but it helped me out a lot. make sure to not copy their code... but no one will mind you learning from it.

CSflim 09-12-2004 12:22 PM

Get a book from the library.
Compare the different ones, and try to find one with lots of tutorials and exercises (preferably with solutions provided).

Work through a chapter a night doing all of the tutorials and exercises. Don't just read the tutorials in the book, actually type them out and run them, making sure you understand each line as you go. Another thing which would help to make sure you understand what is going on is to try and write the program that is done in a tutorial in some other way. Even if you only change the program in a trivial way (e.g. change the program so the elements of an array are stored in the reverse order to the one in the book), it will help you understand exactly how the prgram works.

articsky 09-13-2004 02:32 AM

thank you all. im going to give it a try and hopefully get my head around all this coding.
cheers!

bendsley 09-13-2004 11:15 AM

I would say just go to Barnes and Noble and look at java programming books. It took me about 4-6 weeks to become proficient at java. For some reason though, I can pick up programming languages quite quickly. I guess it's just the logic, syntax is usually the pain.

2sheds 09-14-2004 07:58 PM

imho, the only way to really learn is by doing. start by typing in example programs you see in books and online. don't just cut-n-paste sample code, type it in yourself. get used to how the code looks and writes, and you'll begin to be able to think that way.

java tutorial on sun's website is a good place to start (bonus - it's free). then start buying books in areas you are interested in: swing (gui) devel, network programming, applets, graphics, etc.

oreilly's java enterprise bookshelf cd is available online (for now...):

http://www.unix.org.ua/orelly/java-ent/

"java in a nutshell" - available at the above link - is a good intro to someone with experience in other programming languages.

The Phenomenon 09-16-2004 03:40 AM

Get a Java Reference book and think of some form of program you want to write, and get to it. Its the only way.


All times are GMT -8. The time now is 06:28 PM.

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360