• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

compile and runtime error

 
Ranch Hand
Posts: 71
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
I need some help in understanding how one differentiates between a runtime error and a compile time error. When a qn carries the 2 as options - i get confused on what to pick.
Can someone please giude to some good sources where i can clear my I/O concepts. I've read from RHE and Complete reference, but am not happy with the explainations. What else can i read that will make me comfortable with I/O
BTW if someone is having problems with Collections API then i would recommend reading the - Introduction to the Collections Framework - Short Course - By MageLang Institute at http://developer.java.sun.com. Though its lenghty and covers more than what is required for SCJP, it helped me clear my concepts in one reading... when RHE was giving me the creeps ;-)!
thanks
eskay !
 
Ranch Hand
Posts: 124
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For I/O - I'd suggest you read the java tutorial on java.sun.com !
 
eskay kumar
Ranch Hand
Posts: 71
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey ...please help me with this....!!!
 
Ranch Hand
Posts: 18944
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The most simply answer I can give you is that:
Compile time error means your syntax are wrong.
For example: putting package after import.
Run time error means your program semantic is wrong.
For example: try to divide by zero, etc...
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic