Programming C#

Tasks studies - laboratory


Project maintained by dawidolko Hosted on GitHub Pages — Theme by dawidolko

Object-Oriented Programming - C#

EXCEPTIONS

Exceptions are issues that arise during program execution. In C#, an exception is the response to exceptional circumstances occurring during program operation, such as attempting to divide by zero.

Exceptions allow transferring control from one part of the program to another. Exception handling in C# revolves around four keywords: try, catch, finally, and throw.

Assuming a block raises an exception, the method catches the exception using a combination of try and catch keywords. The try/catch block surrounds code that may generate an exception. The syntax for using try/catch looks like this:

try
{
    // statements causing exception
}
catch (ExceptionName e1)
{
    // error handling code
}
catch (ExceptionName e2)
{
    // error handling code
}
finally
{
    // statements to be executed
}

Multiple catch statements can be written to catch different types of exceptions in case the try block generates more than one exception in different situations.

class ExceptionTestClass
{
    public static void Main()
    {
        int x = 0;
        try
        {
            int y = 100 / x;
        }
        catch (ArithmeticException e)
        {
            Console.WriteLine($"ArithmeticException Handler: {e}");
        }
        catch (Exception e)
        {
            Console.WriteLine($"Generic Exception Handler: {e}");
        }
    }
}

Exceptions in C# are represented by classes. Exception classes in C# mainly derive directly or indirectly from the System.Exception class. Some exception classes derived from System.Exception include System.ApplicationException and System.SystemException. System.ApplicationException handles exceptions generated by applications, so custom exceptions should derive from this class. System.SystemException is the base class for all predefined system exceptions. The table below lists some predefined exception classes derived from System.SystemException:

No. Exception Class Description
1 System.IO.IOException Handles I/O errors.
2 System.IndexOutOfRangeException Handles errors generated when a method refers to an array index out of range.
3 System.ArrayTypeMismatchException Handles errors generated when the type is mismatched with the array type.
4 System.NullReferenceException Handles errors generated from referencing a null object.
5 System.DivideByZeroException Handles errors generated from dividing a dividend with zero.
6 System.InvalidCastException Handles errors generated during upcasting.
7 System.OutOfMemoryException Handles errors generated from insufficient free memory.
8 System.StackOverflowException Handles errors generated from stack overflow.

Custom Exceptions

Applications in C# can throw system or user-defined exceptions. User-defined exceptions should minimally include four constructors:

For example:

public class InvalidNumberException : System.Exception
{
    public InvalidNumberException() : base() { }
    public InvalidNumberException(string message) : base(message) { }
    public InvalidNumberException(string message, System.Exception inner) : base(message, inner) { }
}

// Usage
int DivideBy4(int a, int b)
{
    if (b != 4)
        throw new InvalidNumberException("Number b is not equal to 4");
    return a / b;
}

When to Throw Exceptions

When NOT to Use Exceptions

Self-Study Tasks:

  1. Implement a method that takes a string parameter and prints its length to standard output.

    • Pass null to this method and observe the exception thrown.
    • Surround the method call with a try-catch block, catch the exception, and print the stack trace (StackTrace) to standard output immediately after printing it again.
  2. Implement three new exceptions and a method that randomly throws one of them on each call.

    • Surround the method call with a try-catch statement containing one catch block for each exception type. Have each catch block print which exception it caught.
  3. Write a program to check if exceptions thrown in catch blocks can be handled by the same block or one of the other blocks in the same try-catch statement.

  4. In the example below, the try block has five statements. Each of them can throw the same exception. Propose a solution in the exception handling code to determine in which statement it occurred.

public class SomeClass
{
    public void CanThrowException()
    {
        if (new Random().Next(5) == 0)
            throw new Exception();
    }
}

class Program
{
    static void Main(string[] args)
    {
        SomeClass someClassObj = new SomeClass();
        try
        {
            someClassObj.CanThrowException();
            someClassObj.CanThrowException();
            someClassObj.CanThrowException();
            someClassObj.CanThrowException();
            someClassObj.CanThrowException();
        }
        catch (Exception e)
        {
            // Handle the exception here
        }
    }
}
  1. Implement a method to copy an object (copy each variable of the object, not just the reference). If no parameter is provided (e.g., null parameter), throw an appropriate exception with a relevant message. (You can use classes programmed in previous exercises).

  2. Modify the previous task by creating your own data type. Then implement the IClonable interface and perform the first task again. Check the operation of the MemberwiseClone() method.

These tasks will help you understand exception handling and its nuances in C#.