Add exception handling to the queue classes : Queue « Collections Data Structure « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Collections Data Structure » QueueScreenshots 
Add exception handling to the queue classes
Add exception handling to the queue classes
 
/*
C# A Beginner's Guide
By Schildt

Publisher: Osborne McGraw-Hill
ISBN: 0072133295
*/
/*  
    Project 10-1 
 
    Add exception handling to the queue classes. 
*/ 
using System; 

// A character queue interface. 
public interface ICharQ {    
  // Put a characer into the queue.    
  void put(char ch)
 
  // Get a character from the queue.   
  char get()
}
 

 
// An exception for queue-full errors. 
class QueueFullException : ApplicationException 
  public QueueFullException() : base() { } 
  public QueueFullException(string str: base(str) { } 
 
  public override string ToString() { 
    return "\n" + Message; 
  

 
// An exception for queue-empty errors. 
class QueueEmptyException : ApplicationException 
  public QueueEmptyException() : base() { } 
  public QueueEmptyException(string str: base(str) { } 
 
  public override string ToString() { 
    return "\n" + Message; 
  
}

// A fixed-size queue class for characters that uses exceptions. 
class FixedQueue : ICharQ {     
  char[] q; // this array holds the queue     
  int putloc, getloc; // the put and get indices     
     
  // Construct an empty queue given its size.    
  public FixedQueue(int size) {  
    q = new char[size+1]// allocate memory for queue     
    putloc = getloc = 0;     
  }     
    
  // Put a character into the queue.     
  public void put(char ch) { 
    if(putloc==q.Length-1)  
      throw new QueueFullException("Max length is " 
                                    (q.Length-1))
         
    putloc++;     
    q[putloc= ch;     
  }     
     
  // Get a character from the queue.    
  public char get() { 
    if(getloc == putloc)  
      throw new QueueEmptyException()
       
    getloc++;     
    return q[getloc];     
  }     
}

// Demonstrate the queue exceptions. 
 
public class QExcDemo {     
  public static void Main() {     
    FixedQueue q = new FixedQueue(10);     
    char ch;     
    int i;     
     
    try {  
      // overrun the queue 
      for(i=0; i < 11; i++) { 
        Console.Write("Attempting to store : " 
                         (char) ('A' + i))
        q.put((char) ('A' + i));     
        Console.WriteLine(" -- OK")
      
      Console.WriteLine()
    
    catch (QueueFullException exc) { 
      Console.WriteLine(exc)
    
    Console.WriteLine()
    
    try 
      // over-empty the queue 
      for(i=0; i < 11; i++) {      
        Console.Write("Getting next char: ")
        ch = q.get();     
        Console.WriteLine(ch);     
      
    
    catch (QueueEmptyException exc) { 
      Console.WriteLine(exc)
    }  
  }     
}



           
         
  
Related examples in the same category
1.Put elements into a queue
2.Put user-defined objects to Queue collection
3.Implements the queue data type using an arrayImplements the queue data type using an array
4.A queue class for charactersA queue class for characters
5.illustrates the use of a Queueillustrates the use of a Queue
6.Queue testQueue test
7.Demonstrate the Queue classDemonstrate the Queue class
8.Priority Queue
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.