A two-dimensional fail-soft array : Indexer « Language Basics « C# / C Sharp

C# / C Sharp
1. 2D Graphics
2. Collections Data Structure
3. Components
4. Database ADO.net
5. Development Class
6. Event
7. File Stream
8. GUI Windows Form
9. Language Basics
10. Network
11. Office
12. Regular Expressions
13. Services Event
14. Thread
15. Web Services
16. Windows
17. XML
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
C# / C Sharp » Language Basics » IndexerScreenshots 
A two-dimensional fail-soft array
A two-dimensional fail-soft array

/*
C#: The Complete Reference 
by Herbert Schildt 

Publisher: Osborne/McGraw-Hill (March 8, 2002)
ISBN: 0072134852
*/

// A two-dimensional fail-soft array. 
 
using System; 
 
class FailSoftArray2D {  
  int[,a; // reference to underlying 2D array  
  int rows, cols; // dimensions 
  public int Length; // Length is public 
 
  public bool errflag; // indicates outcome of last operation 
   
  // Construct array given its dimensions. 
  public FailSoftArray2D(int r, int c) { 
    rows = r; 
    cols = c; 
    a = new int[rows, cols]
    Length = rows * cols;  
  
 
  // This is the indexer for FailSoftArray2D. 
  public int this[int index1, int index2] { 
    // This is the get accessor. 
    get 
      if(ok(index1, index2)) { 
        errflag = false
        return a[index1, index2]
      else 
        errflag = true
        return 0
      
    
 
    // This is the set accessor. 
    set 
      if(ok(index1, index2)) { 
        a[index1, index2= value; 
        errflag = false
      
      else errflag = true
    
  
 
  // Return true if indexes are within bounds. 
  private bool ok(int index1, int index2) { 
   if(index1 >= & index1 < rows & 
      index2 >= & index2 < cols
         return true
 
   return false
  
}  
  
// Demonstrate a 2D indexer. 
public class TwoDIndexerDemo {  
  public static void Main() {  
    FailSoftArray2D fs = new FailSoftArray2D(35)
    int x; 
 
    // show quiet failures 
    Console.WriteLine("Fail quietly.")
    for(int i=0; i < 6; i++
      fs[i, i= i*10
 
    for(int i=0; i < 6; i++) { 
      x = fs[i,i]
      if(x != -1Console.Write(x + " ")
    
    Console.WriteLine()
 
    // now, generate failures 
    Console.WriteLine("\nFail with error reports.")
    for(int i=0; i < 6; i++) { 
      fs[i,i= i*10
      if(fs.errflag
        Console.WriteLine("fs[" + i + ", " + i + "] out-of-bounds")
    
 
    for(int i=0; i < 6; i++) { 
      x = fs[i,i]
      if(!fs.errflagConsole.Write(x + " ")
      else 
        Console.WriteLine("fs[" + i + ", " + i + "] out-of-bounds")
    
  
}


           
       
Related examples in the same category
1. Use an indexer to create a fail-soft arrayUse an indexer to create a fail-soft array
2. Overload the FailSoftArray indexerOverload the FailSoftArray indexer
3. Indexers don't have to operate on actual arraysIndexers don't have to operate on actual arrays
4. Create a specifiable range array classCreate a specifiable range array class
5. Define indexerDefine indexer
6. Indexer: allow array like indexIndexer: allow array like index
7. illustrates the use of an indexer 1illustrates the use of an indexer 1
8. Implements an indexer in a classImplements an indexer in a class
9. Illustrates the use of an indexer
10. Implements an indexer and demonstrates that an indexer does not have to operate on an arrayImplements an indexer and demonstrates that an indexer does not have to operate on an array
11. C# Properties and Indexers
12. Indexing with an Integer IndexIndexing with an Integer Index
13. Indexing with an String Index
14. Indexing with Multiple ParametersIndexing with Multiple Parameters
w_w__w_.___j___a_va__2___s__.__co_m__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.