1 / 20

CIS162AD – C#

CIS162AD – C#. Formatting and Exceptions 03_exceptions.ppt. Overview of Topics. Hardware Information Processing Cycle Text Boxes - for input and output Numeric input and output Handling Exceptions IPO Charts. Input Devices Keyboard Mouse Scanner Output Devices Console (Display)

urvi
Download Presentation

CIS162AD – C#

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CIS162AD – C# Formatting and Exceptions 03_exceptions.ppt

  2. Overview of Topics • Hardware • Information Processing Cycle • Text Boxes - for input and output • Numeric input and output • Handling Exceptions • IPO Charts

  3. Input Devices Keyboard Mouse Scanner Output Devices Console (Display) Printer Storage Devices Hard drive Diskette Zip Disk Internally Central Processing Unit (CPU) Memory (RAM) A Computer is an electronic device consisting of hardware.

  4. Hardware Model CPU Input Devices Memory (RAM) Output Devices Storage Devices The hardware configuration is used to support the Information Processing Cycle.

  5. Information Processing Cycle InputRaw Data Process (Application) OutputInformation Storage Output from one process can serve as input to another process.

  6. What do we need to operate the hardware and transform data into information? Software!

  7. Software: Two Major Categories • Operating System (OS) • Software that allocates and monitors computer resources including memory allocation, storage, and security. • Application Software • Software used to process raw data into information. • We will be developing applications using C#.

  8. Input/Output • Recall the Information Processing Cycle Input Process Output • We need a user interface to get their Input and to display processing results as Output. • We use variables to store the values entered by the user and to store the results of the processing. • In C#, textboxes and labels are the most common control objects used to facilitate I/O.

  9. Input/Output in C# • Contents of a textbox is always a String. • Use the Text property to get or put values. • Numbers are also entered as Strings through textboxes. • The String must be converted to a number before being assigned to a numeric variable, and before being used in a arithmetic expression. • Each datatype has a Parse method for conversion. • To display a number in a label or textbox it must be converted from a number to a String. • Use built-in function ToString.

  10. Example All Together int intQty; decimal decPrice; decimal decSubtotal;//input intQty = int.Parse(txtQuantity.Text); decPrice = decimal.Parse(txtPrice.Text);//process decSubtotal = intQty * decPrice; //output lblSubtotal.Text = decSubtotal.ToString(“C”);

  11. Handling Exceptions • When numeric data is requested from the user things can go wrong. • The conversion method (Parse) will fail if the user enters nonnumeric data or leaves the textbox blank. • Each of these situations will cause a run-time error. • Each of these situations throws an exception before the run-time error is display. • We can catch the exception with a Try/Catch Block. • Catching the exception allows us to handle the error gracefully.

  12. Try / Catch Blocks • Enclose any statements that might cause an error in a try/catch block.try { intQty = int.Parse(txtQuantity.Text)}catch (Exception exc){ MessageBox.Show(“Data Entry Error.”)}finally{ txtQuantity.Focus( )} • Use catch section to handle the error. • Create a local object (exc) of type Exception for processing. • Use finally for statements that should be executed whether or not an exception occurred. finally section is optional.

  13. Exception Classes • Exception classes can be used to catch specific errors. • InvalidCastException – failure of conversion function. • ArithmeticException – a calculation error • OutOfMemoryException – not enough memory • Exception – use to handle any exceptions not coded. • Use Message property to display error message when an unexpected error is generated. • try intQty = int.Parse(txtQuanityty.Text) catch (InvalidCastException exc) MessageBox.Show(“Data Entry Error.”)catch (Exception exc)MessageBox.Show(“Unexpected Error: ” & exc.Message)finally

  14. MessageBox Object • A message can be displayed to users in a message box, which is a special type of window. • MessageBox.Show(text, titlebar, buttons, icon) • Text is the message displayed to the user. • Titlebar is used to provide a title for the window. • Buttons is used to specify the buttons that should be displayed (OK, Cancel, Retry, Yes, No, etc.) • Icon is used to specify what icon to display in front of the message (Error, Hand, Information, None, Warning, etc.) • Text is required, but the other parameters are optional.

  15. Method Overloading • Method Overloading occurs when methods have the same name but different number or type of parameters. • The Show method for MessageBox is defined many different ways. • The same method name can be used because the argument list for each version makes it unique. This is referred to as the method’s signature. • Every method must have a unique signature. • This is a feature of object-oriented programming.

  16. IPO Charts • Input, Processing, and Output (IPO) • When designing a program, we usually begin with the end in mind (output). • From the output we can determine the inputs that will be required to complete the processing.

  17. IPO Chart for CS3

  18. CS3 Sales Calculator Code //Input intQuantity = int.Parse(txtQuantity.Text); decPrice = decimal.Parse (txtPrice.Text); //Process - calculate values decExtendedPrice = intQuantity * decPrice; decSalesTax = decExtendedPrice * cdecTAX_RATE; decTotalDue = decExtendedPrice + decSalesTax + cdecSHIPPING_RATE; //Output lblExtendedPrice.Text = decExtendedPrice.ToString("C"); lblSalesTax.Text = decSalesTax.ToString("C"); lblShipping.Text = cdecSHIPPING_RATE.ToString("C"); lblTotalDuel.Text = decTotalDue.ToString("C");

  19. Using IPO Charts • Consider using IPO Charts when planning the logic for your assignments. • It is much easier to develop a program if you have a plan. It will save you a lot of time. • It is very difficult to design a program on the fly in front of the keyboard. • Even if you find the first couple assignments “easy”, you should spend some time designing the solution so that you will have experience when we get to the more complicated assignments.

  20. Summary • Numeric Input and Output • Exception Handling • IPO Charts

More Related