VBer new to VB.net - handles divide by zero?
-
I am going through the exercises in a textbook to learn about exception handling. This is my code:
Dim n1, n2 As Integer Dim n3 As Single n1 = CInt(txtIn1.Text) n2 = CInt(txtIn2.Text) Try lblOut.Text = n1 / n2 Catch ex As Exception lblWarn.Text = "Warning!" End Try
1] The book says Catch e As Exception, but Visual Studio defaults to 'ex' instead of 'e'. If I deliberately put in 'e', I get a build error: "Variable 'e' hides a variable in an enclosing block." What is wrong here? 2] It seems to me that, if a zero is put into txtIn2, it should throw an error. It doesn't. It handles it gracefully, but unexpectedly, putting the text 'Infinity' into lblOut. How am I suppsoed to learn exception handling if it won't act ... exceptional! ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)If you cast n1 / n2 to an integer...
lblOut.Text = CInt(n1 / n2)
It will throw a divide by zero exception. Not sure why that is, but setting a labels text returns 'Infinity'. Dont forget, despite the huge, widespread use of VB, its not a real programming language. You cant write halfway decent programs with VB.net because it sucks so much. (Sarcasm intended) -
If you cast n1 / n2 to an integer...
lblOut.Text = CInt(n1 / n2)
It will throw a divide by zero exception. Not sure why that is, but setting a labels text returns 'Infinity'. Dont forget, despite the huge, widespread use of VB, its not a real programming language. You cant write halfway decent programs with VB.net because it sucks so much. (Sarcasm intended)Daniel1324 wrote: If you cast n1 / n2 to an integer... lblOut.Text = CInt(n1 / n2) It will throw a divide by zero exception So the problem is with the Single object ? C# behaves differently in this case though, with the same object. It still threw an exception, as it should. Daniel1324 wrote: Not sure why that is, but setting a labels text returns 'Infinity'. Because in VB.NET, an int divided by 0 = infinity when passed to a Single. I don't know why, or why this conversion is obviously implicit. It's the stupidest thing I've ever seen. Like I said, everyone here is still laughing about it. Here's more fun. If you make n3 an Integer instead of a Single, this code will throw what exception ? Dim n1, n2 As Integer Dim n3 As Integer Dim s As String n1 = CInt("5") n2 = CInt("0") Try n3 = n1 / n2 s = n3 Catch ex As Exception s = "Warning!" End Try The answer is NOT the 'DivideByZeroException', but an 'OverflowException'. Oh yeah, VB.NET is a real programming language... Daniel1324 wrote: Dont forget, despite the huge, widespread use of VB, its not a real programming language. VB is widely used because it was designed for people who can't program to be able to knock something out. For that, it works. What percentage of applications you bought and run on your desktop were written in VB ? Daniel1324 wrote: You cant write halfway decent programs with VB.net because it sucks so much. Yes, you can write a decent program in VB. Hell, you can write a decent program in almost any language. But that doesn't make it a good tool for the job. On the other end of the coin, you can write any program you like in C. But why would you want to ? C is at least useful, but like VB, it has a lot of hidden traps for the unwary traveller. And that would be my main point. A language for beginners that is rife with hidden gotchas, unexplainable syntax and inexcusable behavour ? Give me a break. Christian Graus - Microsoft MVP - C++
-
Daniel1324 wrote: If you cast n1 / n2 to an integer... lblOut.Text = CInt(n1 / n2) It will throw a divide by zero exception So the problem is with the Single object ? C# behaves differently in this case though, with the same object. It still threw an exception, as it should. Daniel1324 wrote: Not sure why that is, but setting a labels text returns 'Infinity'. Because in VB.NET, an int divided by 0 = infinity when passed to a Single. I don't know why, or why this conversion is obviously implicit. It's the stupidest thing I've ever seen. Like I said, everyone here is still laughing about it. Here's more fun. If you make n3 an Integer instead of a Single, this code will throw what exception ? Dim n1, n2 As Integer Dim n3 As Integer Dim s As String n1 = CInt("5") n2 = CInt("0") Try n3 = n1 / n2 s = n3 Catch ex As Exception s = "Warning!" End Try The answer is NOT the 'DivideByZeroException', but an 'OverflowException'. Oh yeah, VB.NET is a real programming language... Daniel1324 wrote: Dont forget, despite the huge, widespread use of VB, its not a real programming language. VB is widely used because it was designed for people who can't program to be able to knock something out. For that, it works. What percentage of applications you bought and run on your desktop were written in VB ? Daniel1324 wrote: You cant write halfway decent programs with VB.net because it sucks so much. Yes, you can write a decent program in VB. Hell, you can write a decent program in almost any language. But that doesn't make it a good tool for the job. On the other end of the coin, you can write any program you like in C. But why would you want to ? C is at least useful, but like VB, it has a lot of hidden traps for the unwary traveller. And that would be my main point. A language for beginners that is rife with hidden gotchas, unexplainable syntax and inexcusable behavour ? Give me a break. Christian Graus - Microsoft MVP - C++
What percentage of applications you bought and run on your desktop were written in VB ? Good point. I actually prefer C# and I am at least as good in C# as I am in VB. But I'm starting college Monday and part of the course is learning VB.net. I have a love hate relaionship with it... On one hand, I love writing programs in it because, well... its easy. On the other hand, I hate having to tell people that its written Visual Basic.
-
What percentage of applications you bought and run on your desktop were written in VB ? Good point. I actually prefer C# and I am at least as good in C# as I am in VB. But I'm starting college Monday and part of the course is learning VB.net. I have a love hate relaionship with it... On one hand, I love writing programs in it because, well... its easy. On the other hand, I hate having to tell people that its written Visual Basic.
Daniel1324 wrote: Good point. *grin* Daniel1324 wrote: On one hand, I love writing programs in it because, well... its easy. I don't think C# is any harder. In fact, I think it's easier, because of the many traps in VB. Christian Graus - Microsoft MVP - C++
-
I am going through the exercises in a textbook to learn about exception handling. This is my code:
Dim n1, n2 As Integer Dim n3 As Single n1 = CInt(txtIn1.Text) n2 = CInt(txtIn2.Text) Try lblOut.Text = n1 / n2 Catch ex As Exception lblWarn.Text = "Warning!" End Try
1] The book says Catch e As Exception, but Visual Studio defaults to 'ex' instead of 'e'. If I deliberately put in 'e', I get a build error: "Variable 'e' hides a variable in an enclosing block." What is wrong here? 2] It seems to me that, if a zero is put into txtIn2, it should throw an error. It doesn't. It handles it gracefully, but unexpectedly, putting the text 'Infinity' into lblOut. How am I suppsoed to learn exception handling if it won't act ... exceptional! ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)Now that the rest of you are done, trying to thrash VB.Net Here is the reason the lblOut Has Infinity in it. Exception Invalid operation Exception - An operand is invalid for the operation to be performed. Return Value: NaN Division by zero Exception An attempt is made to divide a non-zero value by zero. Returns: Infinity (1/-0 = negative infinity) Overflow Exception The result of an operation is too large to be represented. Returns: Positive or negative infinity. Underflow Exception The result of an operation is too small to be represented. Returns: Positive or negative zero. Inexact Exception The rounded result of an operation is not exact. Returns: The calculated value. cref: IEEE-754/IEC 60559 progload
-
Now that the rest of you are done, trying to thrash VB.Net Here is the reason the lblOut Has Infinity in it. Exception Invalid operation Exception - An operand is invalid for the operation to be performed. Return Value: NaN Division by zero Exception An attempt is made to divide a non-zero value by zero. Returns: Infinity (1/-0 = negative infinity) Overflow Exception The result of an operation is too large to be represented. Returns: Positive or negative infinity. Underflow Exception The result of an operation is too small to be represented. Returns: Positive or negative zero. Inexact Exception The rounded result of an operation is not exact. Returns: The calculated value. cref: IEEE-754/IEC 60559 progload
Did I stumble into the wrong forum? No wait, it still says Visual "Basic / VB.NET" across the top. Are there any VB programmers in here? That's sort of what I was, you know, expecting. :mad: So anyways. Progload, if division by zero *is* an exception thrown, why did it not get caught? ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)
-
Did I stumble into the wrong forum? No wait, it still says Visual "Basic / VB.NET" across the top. Are there any VB programmers in here? That's sort of what I was, you know, expecting. :mad: So anyways. Progload, if division by zero *is* an exception thrown, why did it not get caught? ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)
Dave, The Divide-by Function("\") caught the exception, and produced a Text Message = "Infinity" Thus the statement "ex" would be false, No Exception. That is by design... It's no "trick or trap". You can test this by doing this, It will now throw the exception to "ex": Dim n1, n2, n3 as integer Try n3 = n1 \ n2 Catch ex As Exception Label2.Text = "Warning! " & ex.Message End Try Hope this helps dave. Progoad
-
Dave, The Divide-by Function("\") caught the exception, and produced a Text Message = "Infinity" Thus the statement "ex" would be false, No Exception. That is by design... It's no "trick or trap". You can test this by doing this, It will now throw the exception to "ex": Dim n1, n2, n3 as integer Try n3 = n1 \ n2 Catch ex As Exception Label2.Text = "Warning! " & ex.Message End Try Hope this helps dave. Progoad
So, the key is making n3 an integer. If it's anything else, it won't throw the exception. It's confusing, but it's really just an example from the book, so no big deal. I should have checked out the book more carefully before purchasing - it's 3 years old. Anyway, now that I'm into it, I'm seeing that this book is covering basic stuff I already know about VB. (The first time I looked at VB.NET code, I was terrified by all the "Region / Friend WithEvents Button1 As System.Windows.Forms.Button" stuff - I thought I was starting at square one.) Once the object-oriented stuff from my little bit of Java programming comes back, I'll be more comfortable. ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)
-
So, the key is making n3 an integer. If it's anything else, it won't throw the exception. It's confusing, but it's really just an example from the book, so no big deal. I should have checked out the book more carefully before purchasing - it's 3 years old. Anyway, now that I'm into it, I'm seeing that this book is covering basic stuff I already know about VB. (The first time I looked at VB.NET code, I was terrified by all the "Region / Friend WithEvents Button1 As System.Windows.Forms.Button" stuff - I thought I was starting at square one.) Once the object-oriented stuff from my little bit of Java programming comes back, I'll be more comfortable. ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)
Yes, The label control is a text control, thus if you return the text ("Infinity") into it, why would it throw an exeception (to ex) because it is text? The author was not following proper basic syntax coding... and created his own "bug". By the Way, I realy enjoy VB and VB.Net, and it's Math capability. Beyond what you see a lot of folks saying... I think it is a very powerfull language. Have fun learning it.. I am.. progload
-
Yes, The label control is a text control, thus if you return the text ("Infinity") into it, why would it throw an exeception (to ex) because it is text? The author was not following proper basic syntax coding... and created his own "bug". By the Way, I realy enjoy VB and VB.Net, and it's Math capability. Beyond what you see a lot of folks saying... I think it is a very powerfull language. Have fun learning it.. I am.. progload
progload wrote: thus if you return the text ("Infinity") into it Ah, well I'd assumed it would be the / operation that would throw it. I see what you're saying now. The / operation catches the error internally and simply returns 'infinity'. Thus, externally, it is not an error at all until I attempt to do something with it. In fact, the error it's been coded to throw isn't arithmetical at all, it is a type error - I can't assume that the / operation will return a numerical value; it could return a string. Small potatoes. This is actually baby steps towards developing an app that will access the Windows Media Services 9 SDK to manipulate broadcast media publishing points. And even THAT is an intermediate step to transposing it to ASP.NET so I can do it from a web app. Can you say 'out of my league'? Why do I do this to myself? ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)
-
DaveC426913 wrote: n1 = CInt(txtIn1.Text) n2 = CInt(txtIn2.Text) I don't think you're supposed to use CInt, you should use Convert.ToInt32. VB.NET contains a lot of VB6 crap, because the VB community complained when Microsoft initially ( and with good reason ) removed it. DaveC426913 wrote: The book says Catch e As Exception, but Visual Studio defaults to 'ex' instead of 'e'. If I deliberately put in 'e', I get a build error: "Variable 'e' hides a variable in an enclosing block." What is wrong here? 1/ it doesn't matter what you call your variable 2/ you have another variable called e that's visible to this one, so you can't do this, because one overrides the other 3/ you should catch DivideByZeroException, not just Exception. This will catch ANY error, including ones you have not anticipated and/or can't recover from. DaveC426913 wrote: 2] It seems to me that, if a zero is put into txtIn2, it should throw an error. It doesn't. It handles it gracefully, but unexpectedly, putting the text 'Infinity' into lblOut. Good question. VB sucks. Use C#. I tried this now, and even if I set n3 to be n1/n2, it still does the same. C# throws an exception, like all real programming languages. I find it hilarious that your book doesn't know that this doesn't throw an exception, I wonder if the author bothered to try it. *edit* I apologise if the above seemed harsh, but I have to tell you, the whole office is laughing about this VB 'feature' right now. I'm not wanting to give you a hard time, just VB. Christian Graus - Microsoft MVP - C++
Christian Graus wrote: I don't think you're supposed to use CInt, you should use Convert.ToInt32. Actually, you can still use CInt without any worries of it being on the chopping block in 2005. CInt is actually faster than using Convert.ToInt32 because CInt's conversion code is compiled in-line with the expression. There's no method call to setup and jump to. His code is converting the DivideByZero exception to a string before it blows up. This results in the string "Infinity" being returned. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
I am going through the exercises in a textbook to learn about exception handling. This is my code:
Dim n1, n2 As Integer Dim n3 As Single n1 = CInt(txtIn1.Text) n2 = CInt(txtIn2.Text) Try lblOut.Text = n1 / n2 Catch ex As Exception lblWarn.Text = "Warning!" End Try
1] The book says Catch e As Exception, but Visual Studio defaults to 'ex' instead of 'e'. If I deliberately put in 'e', I get a build error: "Variable 'e' hides a variable in an enclosing block." What is wrong here? 2] It seems to me that, if a zero is put into txtIn2, it should throw an error. It doesn't. It handles it gracefully, but unexpectedly, putting the text 'Infinity' into lblOut. How am I suppsoed to learn exception handling if it won't act ... exceptional! ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)1] The book says Catch e As Exception, but Visual Studio defaults to 'ex' instead of 'e'. If I deliberately put in 'e', I get a build error: "Variable 'e' hides a variable in an enclosing block." What is wrong here? The book that you are using may have a different definition in its parameters for your code block. For example:
public sub Test(byval sender as object, byval e as system.eventargs) Dim n1, n2 As Integer Dim n3 As Single n1 = CInt(txtIn1.Text) n2 = CInt(txtIn2.Text) Try lblOut.Text = n1 / n2 Catch e As Exception lblWarn.Text = "Warning!" End Try end sub
If you tried to catch 'e as an exception' than the e would override the 'e as system.eventargs' which is in the sub parameter. So you can change either of the two variables but they cannot be the same. Look in your book and see if the parameters for the sub or function use an e variable. -
1] The book says Catch e As Exception, but Visual Studio defaults to 'ex' instead of 'e'. If I deliberately put in 'e', I get a build error: "Variable 'e' hides a variable in an enclosing block." What is wrong here? The book that you are using may have a different definition in its parameters for your code block. For example:
public sub Test(byval sender as object, byval e as system.eventargs) Dim n1, n2 As Integer Dim n3 As Single n1 = CInt(txtIn1.Text) n2 = CInt(txtIn2.Text) Try lblOut.Text = n1 / n2 Catch e As Exception lblWarn.Text = "Warning!" End Try end sub
If you tried to catch 'e as an exception' than the e would override the 'e as system.eventargs' which is in the sub parameter. So you can change either of the two variables but they cannot be the same. Look in your book and see if the parameters for the sub or function use an e variable.In addition to the comment above, I would advide just assuming "ex" as a standard way for naming exceptions, because for all practical purposes you should just consider "e" as a system reserved variable because NET always declares event arguments as "e". As far as the "VB is crap" comments, you'll get use to that. It happens on a regular basis. This is a tired, no longer relevant pet argument that some tired, no longer relevant people seem to be unable to let go of. The reality is that although there are some very minor differences between C# and VB.NET, once you learn to program against the NET framework, you will discover that there is essentially no practical difference. They both compile to exactly the same machine level code, and they both have for all practical purposes the same level of functionality. Just tune it out.
-
Christian Graus wrote: I don't think you're supposed to use CInt, you should use Convert.ToInt32. Actually, you can still use CInt without any worries of it being on the chopping block in 2005. CInt is actually faster than using Convert.ToInt32 because CInt's conversion code is compiled in-line with the expression. There's no method call to setup and jump to. His code is converting the DivideByZero exception to a string before it blows up. This results in the string "Infinity" being returned. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
Isn't CInt one of the legacy methods that was going to be removed ? I wasn't sure on this. Dave Kreskowiak wrote: His code is converting the DivideByZero exception to a string before it blows up. This results in the string "Infinity" being returned. Wrong. I converted into code which didn't use strings at all, and the Single variable gets the VALUE of positive Infinity. That's where the string value comes from, the Single, which does not blow up. Then I changed the code to set to an int, and it DOES blow up then, but it doesn't throw a DivideByZero exception, it throws an OverflowException. C# will blow up on a divide by zero, no matter what type it's being set to, and it throws the right exception. Do you have an explanation for this that doesn't involve the VB.NET design team spending most of their time drunk ? Because we spent a Friday laughing about it here ( where we never use VB.NET ). Christian Graus - Microsoft MVP - C++
-
Isn't CInt one of the legacy methods that was going to be removed ? I wasn't sure on this. Dave Kreskowiak wrote: His code is converting the DivideByZero exception to a string before it blows up. This results in the string "Infinity" being returned. Wrong. I converted into code which didn't use strings at all, and the Single variable gets the VALUE of positive Infinity. That's where the string value comes from, the Single, which does not blow up. Then I changed the code to set to an int, and it DOES blow up then, but it doesn't throw a DivideByZero exception, it throws an OverflowException. C# will blow up on a divide by zero, no matter what type it's being set to, and it throws the right exception. Do you have an explanation for this that doesn't involve the VB.NET design team spending most of their time drunk ? Because we spent a Friday laughing about it here ( where we never use VB.NET ). Christian Graus - Microsoft MVP - C++
Christian Graus wrote: Wrong. I converted into code which didn't use strings at all, and the Single variable gets the VALUE of positive Infinity. That's where the string value comes from, the Single, which does not blow up. Sorry. I suffered a momentary rectal/cranial inversion. ;P It would be interesting to see what IL is generated for the same code. I'll try and take a look at that when I get to work. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
-
Christian Graus wrote: Wrong. I converted into code which didn't use strings at all, and the Single variable gets the VALUE of positive Infinity. That's where the string value comes from, the Single, which does not blow up. Sorry. I suffered a momentary rectal/cranial inversion. ;P It would be interesting to see what IL is generated for the same code. I'll try and take a look at that when I get to work. RageInTheMachine9532 "...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome
Dave Kreskowiak wrote: I suffered a momentary rectal/cranial inversion *grin* I'd certainly forgive you for assuming this would not be the case, it's pretty screwed up. Dave Kreskowiak wrote: It would be interesting to see what IL is generated for the same code. I'll try and take a look at that when I get to work. I'd be really interested to hear your thoughts. Overall, I thought that VB.NET and C# did roughly the same thing, and this sort of difference is frankly astounding to me. Christian Graus - Microsoft MVP - C++
-
Isn't CInt one of the legacy methods that was going to be removed ? I wasn't sure on this. Dave Kreskowiak wrote: His code is converting the DivideByZero exception to a string before it blows up. This results in the string "Infinity" being returned. Wrong. I converted into code which didn't use strings at all, and the Single variable gets the VALUE of positive Infinity. That's where the string value comes from, the Single, which does not blow up. Then I changed the code to set to an int, and it DOES blow up then, but it doesn't throw a DivideByZero exception, it throws an OverflowException. C# will blow up on a divide by zero, no matter what type it's being set to, and it throws the right exception. Do you have an explanation for this that doesn't involve the VB.NET design team spending most of their time drunk ? Because we spent a Friday laughing about it here ( where we never use VB.NET ). Christian Graus - Microsoft MVP - C++
Christian, If you realy would like to know why.. it throws an OverflowException as you said.. Take a look here: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q315965&ID=kb;en-us;Q315965&SD=MSDN[^] And Here: http://visualbasic.about.com/od/usingvbnet/l/bldyknaninfa.htm[^] I think it should clear it up for you. progload
-
Christian, If you realy would like to know why.. it throws an OverflowException as you said.. Take a look here: http://support.microsoft.com/default.aspx?scid=kb;en-us;Q315965&ID=kb;en-us;Q315965&SD=MSDN[^] And Here: http://visualbasic.about.com/od/usingvbnet/l/bldyknaninfa.htm[^] I think it should clear it up for you. progload
Thanks for the links. Mathematically, you CAN divide by zero, but what you get is "infinity". Actually, this is not true. Google some maths sites if you don't believe me. Either way, as the article states, this leaves the way open for some serious problems in business apps that don't work hard to avoid this happening. I don't understand the integer divide ( \ ) thing. Does that stop VB from implicitly converting ints to floats ? I guess C#, being more strongly typed, wouldn't need that, and that would go *some* way to explaining why C# and VB.NET behave so differently from one another in this instance. Thanks for the info. Christian Graus - Microsoft MVP - C++
-
Did I stumble into the wrong forum? No wait, it still says Visual "Basic / VB.NET" across the top. Are there any VB programmers in here? That's sort of what I was, you know, expecting. :mad: So anyways. Progload, if division by zero *is* an exception thrown, why did it not get caught? ________________________________________________________________________ Dave Y10K bug! Let's not get caught with our pants down **AGAIN**! (DC 02002)
Sorry Dave, you seem to have stumbled upon an amazingly illogical and inconsistent piece of VB.NET behaviour, hence the discussion. I thought I did in fact explain how to get the exception to throw though, didn't I ? Christian Graus - Microsoft MVP - C++
-
Thanks for the links. Mathematically, you CAN divide by zero, but what you get is "infinity". Actually, this is not true. Google some maths sites if you don't believe me. Either way, as the article states, this leaves the way open for some serious problems in business apps that don't work hard to avoid this happening. I don't understand the integer divide ( \ ) thing. Does that stop VB from implicitly converting ints to floats ? I guess C#, being more strongly typed, wouldn't need that, and that would go *some* way to explaining why C# and VB.NET behave so differently from one another in this instance. Thanks for the info. Christian Graus - Microsoft MVP - C++
Christian, Integer Division under VB.Net Operators: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vbls7/html/vblrfvbspec11_5_4.asp[^] and a simple comparison: http://www.harding.edu/USER/fmccown/WWW/vbnet_csharp_comparison.html[^] Hope this helps. progload