From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,fee8802cc3d8334d X-Google-Attributes: gid103376,public X-Google-Thread: 10a146,fee8802cc3d8334d X-Google-Attributes: gid10a146,public From: bob@nospam.com Subject: Re: Ada and Java. different behaviour. casting long to int problem. Date: 1999/06/17 Message-ID: <7kbv64$2t6@drn.newsguy.com>#1/1 X-Deja-AN: 490867018 References: <7jt2c0$vrb@drn.newsguy.com> <7k57vb$1ipf@drn.newsguy.com> <3766650F.705125B7@pwfl.com> <7k64t7$igo$1@its.hooked.net> <7k689a$ci2@drn.newsguy.com> <3766C842.E1EAB60A@pwfl.com> <3766D1CC.D712895E@itools.symantec.com> <3767CDFC.798BBB23@cajunbro.com> <3767DF5C.5C4A79A@averstar.com> <37694D15.398D9B14@cajunbro.com> <37696EAB.E2226E2A@averstar.com> Newsgroups: comp.lang.ada,comp.lang.java.programmer Date: 1999-06-17T00:00:00+00:00 List-Id: In article <37696EAB.E2226E2A@averstar.com>, Tucker says... > >> Huh? This high level overflow check may not be terribly efficient but >> it is easy enough. > >It is straightforward if all you have is an assignment with >a single operation. However, potentially-overflowing arithmetic >can occur anywhere, including in things like "i++" where significant >rewriting would be required to insert a check. Not only that, what about intermmediate generated results? as in A = B + ( C + D) the result of C+D must be stored somewhere in a register or wherever the compiler decides. (I am assuming no optimization, and this is just an example). So, if the programmer needs to check for oveflow by hand (which is a silly solution if I heared of one), then the programmer needs to start writing the above like this: i = C + D // add code to check that i not overflow A = B + i //add code to check that A did not overflow. Now, with a language that enable expceptions on overflow, I can write ------------------------------- try { A = B + ( C + D) }catch(OverFLowException e) { print("hay, watch out, you have a bug on line " + r.printLineNumber()"); print("please fix your data type, or do something about it"); // here I can either throw() the expection again, or ignore it // but at least I knew about it } ----------------------------------- bob