exceptions

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ramya kandasamy
    New Member
    • Apr 2010
    • 9

    exceptions

    can we say all compile time error messges are build in exceptions in java software
  • jkmyoung
    Recognized Expert Top Contributor
    • Mar 2006
    • 2057

    #2
    Probably not. Some Java compilers are not be written in Java. Even if they are, the compiler may use something other than exceptions as a way of storing the compile time errors.

    Comment

    • ramya kandasamy
      New Member
      • Apr 2010
      • 9

      #3
      which is the platform used for java development? and do we hava different compilers for different operating systems?

      Comment

      • jkmyoung
        Recognized Expert Top Contributor
        • Mar 2006
        • 2057

        #4
        1. I suggest googling "Java Platform". Java SE should fulfill most needs.

        2. ...Not really a straight answer: Java compiles it's code into a code readable by a Java Runtime Engine (JRE), which executes the code.

        Comment

        • Dheeraj Joshi
          Recognized Expert Top Contributor
          • Jul 2009
          • 1129

          #5
          JRE's are different for different platforms. So this makes your Java application portable.

          Regards
          Dheeraj Joshi

          Comment

          Working...