Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
893 connectés 

  FORUM HardWare.fr
  Programmation
  C#/.NET managed

  [C#] Remplire une ligne d'une matrice byte[,]...

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

[C#] Remplire une ligne d'une matrice byte[,]...

n°433446
antsite
Je me souviens
Posté le 19-06-2003 à 21:38:01  profilanswer
 

Salut,
J'ai une fonction (Mafonction) qui me retourne un byte[], contenant exactement n bytes. Comment faire pour mettre ce byte[] retourné dans un byte[,] étant lui un tableau à 2 dimensions, le mettre par exemple dans la première ligne, le code suivant ne marche pas:
 
byte[,] b = new byte[10, n];
 
b[0,] = Mafonction(n);
ou
b[0] = Ma....
 
Help
   ANT


Message édité par antsite le 21-06-2003 à 12:12:46
mood
Publicité
Posté le 19-06-2003 à 21:38:01  profilanswer
 

n°433996
antsite
Je me souviens
Posté le 20-06-2003 à 09:46:38  profilanswer
 

:bounce:

n°434929
antsite
Je me souviens
Posté le 21-06-2003 à 10:04:44  profilanswer
 

:bounce:

n°435509
antsite
Je me souviens
Posté le 22-06-2003 à 09:29:12  profilanswer
 

:bounce:

n°435631
MagicBuzz
Posté le 22-06-2003 à 14:48:37  profilanswer
 

Si tu fait un byte[x][y], ça devrait marcher.
 
PS: un byte[x][y] N'est PAS pareil qu'y byte[x, y]
 
Le premier est un tableau de tableaux à 1 dimension, le second un tableau à deux dimensions, leur fonctionnement est donc différent, ainsi que leur représentation mémoire. Par contre, ils peuvent contenir rigoureusement la même chose, et la différence de perfs est impreceptible.

n°435813
antsite
Je me souviens
Posté le 22-06-2003 à 18:14:03  profilanswer
 

aucun de ces deux code de déclaration ne fonctionne:
 
byte[][] evt = new byte[10][4];
ou
byte[10][4] evt;
 
 :heink:

n°435839
MagicBuzz
Posté le 22-06-2003 à 19:04:21  profilanswer
 

Chais pu comment ça se déclare, mais sûr et certain, c'est ce qu'il te faut pour que ça marche.

n°435840
MagicBuzz
Posté le 22-06-2003 à 19:06:26  profilanswer
 

Apparement, tu ne peux pas dimensionner le second tableau à la déclaration (en effet, chaque sous-tableau peut être d'une taille différente)
 
PS: l'aide, c'est pas fait pour les chiens ;)
 


 C# Programmer's Reference    
 
Arrays TutorialSee Also
C# Tutorials
This tutorial describes arrays and shows how they work in C#.
 
Sample Files
See Arrays Sample to download and build the sample files discussed in this tutorial.  
 
Further Reading
Arrays  
12. Arrays  
foreach, in  
Collection Classes Tutorial  
Tutorial
This tutorial is divided into the following sections:  
 
Arrays in General  
Declaring Arrays  
Initializing Arrays  
Accessing Array Members  
Arrays are Objects  
Using foreach with Arrays  
Arrays in General
C# arrays are zero indexed; that is, the array indexes start at zero. Arrays in C# work similarly to how arrays work in most other popular languages There are, however, a few differences that you should be aware of.
 
When declaring an array, the square brackets ([]) must come after the type, not the identifier. Placing the brackets after the identifier is not legal syntax in C#.
 
int[] table; // not int table[];  
Another detail is that the size of the array is not part of its type as it is in the C language. This allows you to declare an array and assign any array of int objects to it, regardless of the array's length.
 
int[] numbers; // declare numbers as an int array of any size
numbers = new int[10];  // numbers is a 10-element array
numbers = new int[20];  // now it's a 20-element array
Declaring Arrays
C# supports single-dimensional arrays, multidimensional arrays (rectangular arrays), and array-of-arrays (jagged arrays). The following examples show how to declare different kinds of arrays:
 
Single-dimensional arrays:
 
int[] numbers;
Multidimensional arrays:
 
string[,] names;
Array-of-arrays (jagged):
 
byte[][] scores;
Declaring them (as shown above) does not actually create the arrays. In C#, arrays are objects (discussed later in this tutorial) and must be instantiated. The following examples show how to create arrays:
 
Single-dimensional arrays:
 
int[] numbers = new int[5];
Multidimensional arrays:
 
string[,] names = new string[5,4];
Array-of-arrays (jagged):
 
byte[][] scores = new byte[5][];
for (int x = 0; x < scores.Length; x++)  
{
   scores[x] = new byte[4];
}
You can also have larger arrays. For example, you can have a three-dimensional rectangular array:
 
int[,,] buttons = new int[4,5,3];
You can even mix rectangular and jagged arrays. For example, the following code declares a single-dimensional array of three-dimensional arrays of two-dimensional arrays of type int:
 
int[][,,][,] numbers;
Example
The following is a complete C# program that declares and instantiates arrays as discussed above.
 
// arrays.cs
using System;
class DeclareArraysSample
{
    public static void Main()
    {
        // Single-dimensional array
        int[] numbers = new int[5];
 
        // Multidimensional array
        string[,] names = new string[5,4];
 
        // Array-of-arrays (jagged array)
        byte[][] scores = new byte[5][];
 
        // Create the jagged array
        for (int i = 0; i < scores.Length; i++)
        {
            scores[i] = new byte[i+3];
        }
 
        // Print length of each row
        for (int i = 0; i < scores.Length; i++)
        {
            Console.WriteLine("Length of row {0} is {1}", i, scores[i].Length);
        }
    }
}
Output
Length of row 0 is 3
Length of row 1 is 4
Length of row 2 is 5
Length of row 3 is 6
Length of row 4 is 7
Initializing Arrays
C# provides simple and straightforward ways to initialize arrays at declaration time by enclosing the initial values in curly braces ({}). It is important to note that array members are automatically initialized to the default initial value for the array type if the array is not initialized at the time it is declared.  
 
The following examples show different ways to initialize different kinds of arrays.
 
Single-Dimensional Array
int[] numbers = new int[5] {1, 2, 3, 4, 5};
string[] names = new string[3] {"Matt", "Joanne", "Robert"};
You can omit the size of the array, like this:
 
int[] numbers = new int[] {1, 2, 3, 4, 5};
string[] names = new string[] {"Matt", "Joanne", "Robert"};
You can also omit the new statement if an initializer is provided, like this:
 
int[] numbers = {1, 2, 3, 4, 5};
string[] names = {"Matt", "Joanne", "Robert"};
Multidimensional Array
int[,] numbers = new int[3, 2] { {1, 2}, {3, 4}, {5, 6} };
string[,] siblings = new string[2, 2] { {"Mike","Amy"}, {"Mary","Albert"} };
You can omit the size of the array, like this:
 
int[,] numbers = new int[,] { {1, 2}, {3, 4}, {5, 6} };
string[,] siblings = new string[,] { {"Mike","Amy"}, {"Mary","Ray"} };
You can also omit the new statement if an initializer is provided, like this:
 
int[,] numbers = { {1, 2}, {3, 4}, {5, 6} };
string[,] siblings = { {"Mike", "Amy"}, {"Mary", "Albert"} };
Jagged Array (Array-of-Arrays)
You can initialize jagged arrays like this example:
 
int[][] numbers = new int[2][] { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
You can also omit the size of the first array, like this:
 
int[][] numbers = new int[][] { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
-or-
 
int[][] numbers = { new int[] {2,3,4}, new int[] {5,6,7,8,9} };
Notice that there is no initialization syntax for the elements of a jagged array.  
 
Accessing Array Members
Accessing array members is straightforward and similar to how you access array members in C/C++. For example, the following code creates an array called numbers and then assigns a 5 to the fifth element of the array:
 
int[] numbers = {10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0};
numbers[4] = 5;
The following code declares a multidimensional array and assigns 5 to the member located at [1, 1]:
 
int[,] numbers = { {1, 2}, {3, 4}, {5, 6}, {7, 8}, {9, 10} };
numbers[1, 1] = 5;
The following is a declaration of a single-dimension jagged array that contains two elements. The first element is an array of two integers, and the second is an array of three integers:
 
int[][] numbers = new int[][] { new int[] {1, 2}, new int[] {3, 4, 5}
};
The following statements assign 58 to the first element of the first array and 667 to the second element of the second array:
 
numbers[0][0] = 58;
numbers[1][1] = 667;
Arrays are Objects
In C#, arrays are actually objects. System.Array is the abstract base type of all array types. You can use the properties, and other class members, that System.Array has. An example of this would be using the Length property to get the length of an array. The following code assigns the length of the numbers array, which is 5, to a variable called LengthOfNumbers:
 
int[] numbers = {1, 2, 3, 4, 5};
int LengthOfNumbers = numbers.Length;
The System.Array class provides many other useful methods/properties, such as methods for sorting, searching, and copying arrays.
 
Using foreach on Arrays
C# also provides the foreach statement. This statement provides a simple, clean way to iterate through the elements of an array. For example, the following code creates an array called numbers and iterates through it with the foreach statement:
 
int[] numbers = {4, 5, 6, 1, 2, 3, -2, -1, 0};
foreach (int i in numbers)
{
   System.Console.WriteLine(i);
}
See Also
C# Tutorials
 
 
 
--------------------------------------------------------------------------------
 
Send feedback to Microsoft
 
© 2001 Microsoft Corporation. All rights reserved.


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  C#/.NET managed

  [C#] Remplire une ligne d'une matrice byte[,]...

 

Sujets relatifs
Saut de ligne dans un message sur onclickRetour a la ligne
[VBA] Dernière ligne d'un fichier texte.[php][forum] Insérer dynamiquement le retour à la ligne
[html/css] caler une ligne de texte tout en haut de la page ? [résolu]builder refuse de m'executer une ligne de code !
retour a la ligne de texte dynamique[SGBD] SQL Server : update d'1 ligne avec COMPTEUR en auto increment
[VB \ exel]Copier une ligne d'une table .... .. ..méthode.. panier de boutique en ligne
Plus de sujets relatifs à : [C#] Remplire une ligne d'une matrice byte[,]...


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR