473,732 Members | 1,921 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

question about the initialization of an array of generic queue

Here are the codes

Queue<string>[] q = new Queue<string>[2];

Console.WriteLi ne(q[0].Count + "");

The program will crash since q[0] is null.

So my question is that what is the best way for new to initialize the array
with generic queue as the value?

I can do for statement and then do q[i] = new Queue<string>() ;

But,is there a better way to do it?

Thanks

Chris
Oct 15 '08 #1
3 2977
But,is there a better way to do it?

No, not really. Array values initialize to their default values: 0 /
false / null / etc. Assuming you want each item in the array to be a
different queue, you will need to loop and create (new) a different
object for each.

Marc
Oct 15 '08 #2
chrisben wrote:
Here are the codes

Queue<string>[] q = new Queue<string>[2];

Console.WriteLi ne(q[0].Count + "");

The program will crash since q[0] is null.

So my question is that what is the best way for new to initialize the
array with generic queue as the value?

I can do for statement and then do q[i] = new Queue<string>() ;

But,is there a better way to do it?
Well, you can always write a reusable function for that:

static class ArrayHelper
{
static void FillUsingDefaul tConstructor<T( this T[] array) where T :
new
{
for( int i = 0; i < array.Length; i++ )
array[i] = new T();
}
}

Queue<string>[] q = new Queue<string>[2];
q.FillUsingDefa ultConstructor( );
>
Thanks

Chris

Oct 15 '08 #3
Why not use List<Queue<stri ng>?

On 10/15/2008 11:44 AM, chrisben wrote:
Here are the codes

Queue<string>[] q = new Queue<string>[2];

Console.WriteLi ne(q[0].Count + "");

The program will crash since q[0] is null.

So my question is that what is the best way for new to initialize the array
with generic queue as the value?

I can do for statement and then do q[i] = new Queue<string>() ;

But,is there a better way to do it?

Thanks

Chris

--
Michael J. Ryan - tracker1(at)the roughnecks(dot) net - www.theroughnecks.net
icq: 4935386 - AIM/AOL: azTracker1 - Y!: azTracker1 - MSN/Win: (email)

.... "I live for immortality."--Laura Thurston
Oct 16 '08 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
1621
by: Dave Coate | last post by:
I am working on a generic way to launch multiple similar processes (threads) at once, but limit the number of threads running at any one time to a number I set. As I understand it the following line makes a Queue "thread safe", so I do not need to explicitly lock and unlock it when multiple threads are working with it. 'Thread safe queue Private IndexQueue As Queue = Queue.Synchronized(New Queue)
10
2837
by: INeedADip | last post by:
I am trying to use a generic (reflection) IComparer class to sort a generic list but I get the error: Unable to cast object of type 'GenericComparer' to type 'System.Collections.Generic.Icomparer `1' My code looks like the following: List<AccountDB.Queue> oList = getAllQueuesFunction(); List.Sort(New GenericComparer("QueueName")); <-- Error
1
4397
by: INeedADip | last post by:
I am trying to use the following generic (reflection) class as the ICamparer parameter for a generic list..but I get the error: "Unable to cast object of type 'GenericComparer' to type 'System.Collections.Generic.IComparer `1' My code looks like the following: List<AccountDB.Queue> oList = getAllQueuesFunction(); oList.Sort(New GenericComparer("QueueName"));
22
13116
by: Adam Clauss | last post by:
OK, I have class A defined as follows: class A { A(Queue<B> queue) { ... } } Now, I then have a subclass of both classes A and B. The subclass of A (SubA), more specifically is passed a Queue<SubB>.
4
8190
by: nhmark64 | last post by:
Hi, Does System.Collections.Generic.Queue not have a Synchronized method because it is already in effect synchronized, or is the Synchronized functionality missing from System.Collections.Generic.Queue? Putting it another way can I safely replace a System.Collections.Queue.Synchronized(myUnSynchronizedQueue) with a System.Collections.Generic.Queue while porting a working 2003 project? Thanks,
4
2223
by: Adam Clauss | last post by:
I ran into a problem a while back when attempting to convert existing .NET 1.1 based code to .NET 2.0 using Generic collections rather than Hashtable, ArrayList, etc. I ran into an issue because the old code allowed me to do what basically was the following assignment: class SomeClass { private Queue q; SomeClass(Queue q)
5
1693
by: ma740988 | last post by:
Consider: #include "handyfactory.h" #include <iostream> struct Shape { virtual void print() const=0; };
1
1678
by: A. Burch | last post by:
What is wrong with this type of generic... I get this error.... Error 1 Inconsistent accessibility: parameter type 'System.Collections.Generic.Queue<TMQ.TheRec>' is less accessible than method 'TMQ.Prod.Prod(System.Collections.Generic.Queue<TMQ.TheRec>)' C:\MQueue\TMQ\Program.cs 21 16 TMQ
1
1365
by: Back 9 | last post by:
Hi all, I would like to make a generic Queue arrry in C# like below. Queue<int> queue = new Queue<int> (); But the compiler keep complaining about the part and honestly I don't know how to make it right. Can you give me a tip on how to do it?
0
8944
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8773
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9445
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9180
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6733
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6030
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4548
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4805
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2177
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.