473,761 Members | 2,410 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Storing objects into a generic list.

Hello,

I'm trying to rewrite visual c++ code into visual c++ .NET code and
I've run across a problem with storing objects into a list.

Here;s an example of the code I have:

ref struct Cookies
{
String^ Name;
array< RaisinCookies ^>^ rCookies;
array< ChocolateCookie s ^>^ cCookies;
}

ref struct RaisinCookies
{
String^ RecipeTitle;
String^ shortDesc;
}

Ref struct ChocolateCookie s
{
String^ RecipeTitle;
String^ shortDesc;
}

Static Generic::List<C ookies^>^ m_cookieRecipeL ist = gcnew
Generic::List<C ookies^>();

Cookies^ accessCookie;

Initialize()
{
accessCookie->rCookies = gcnew array<RaisinCoo kies^>(20);
accessCookie->cCookies = gcnew array<Chocolate Cookies^>(20);

for( int I = 0; I < 20; i++ )
{
accessCookie->rCookies[i] = gcnew RaisinCookies() ;
accessCookie->cCookies[i]=gcnew ChocolateCookie s();
}
}

The problem is when the data when I store new data into the
accessCookie like so

accessCookie->rCookies[i]->RecipeTitle = "Mary's Gourmet Raisin
Cookies";
accessCookie->rCookies[i]->shortDesc = "Sweet treat full of raisins."
M_cookieRecipeL ist->Add(accessCook ie);

accessCookie->cCookies[i]->RecipeTitle = "Choco Chocolate";
accessCookie->cCookies[i]->shortDesc = "Mm hm good."
M_cookieRecipeL ist->Add(accessCook ie);

The second sCookie data overwrites the raisin data. So, I'm trying to
figure out how I can store new RaisinCookies objects in the list
without it overwriting the previous entry.
I've tried to use accessCookie = gcnew RaisinCookies. But a
NullException is thrown on the ChocolateCookie s and RaisinCookies objs
when you try to use them as written above.

Does anyone have any suggestions?

Mar 29 '07 #1
1 2176
I'm not sure I fully understand your problem, because I don't really
understand what the data structure is trying to model in a real-world sense,
but the first question I have to ask is why are you using a fixed-size array
in the first place?

Why not just use a generic List< and add items to the end of that list as
needed?

Kevin

<Mi**********@g mail.comwrote in message
news:11******** **************@ y80g2000hsf.goo glegroups.com.. .
Hello,

I'm trying to rewrite visual c++ code into visual c++ .NET code and
I've run across a problem with storing objects into a list.

Here;s an example of the code I have:

ref struct Cookies
{
String^ Name;
array< RaisinCookies ^>^ rCookies;
array< ChocolateCookie s ^>^ cCookies;
}

ref struct RaisinCookies
{
String^ RecipeTitle;
String^ shortDesc;
}

Ref struct ChocolateCookie s
{
String^ RecipeTitle;
String^ shortDesc;
}

Static Generic::List<C ookies^>^ m_cookieRecipeL ist = gcnew
Generic::List<C ookies^>();

Cookies^ accessCookie;

Initialize()
{
accessCookie->rCookies = gcnew array<RaisinCoo kies^>(20);
accessCookie->cCookies = gcnew array<Chocolate Cookies^>(20);

for( int I = 0; I < 20; i++ )
{
accessCookie->rCookies[i] = gcnew RaisinCookies() ;
accessCookie->cCookies[i]=gcnew ChocolateCookie s();
}
}

The problem is when the data when I store new data into the
accessCookie like so

accessCookie->rCookies[i]->RecipeTitle = "Mary's Gourmet Raisin
Cookies";
accessCookie->rCookies[i]->shortDesc = "Sweet treat full of raisins."
M_cookieRecipeL ist->Add(accessCook ie);

accessCookie->cCookies[i]->RecipeTitle = "Choco Chocolate";
accessCookie->cCookies[i]->shortDesc = "Mm hm good."
M_cookieRecipeL ist->Add(accessCook ie);

The second sCookie data overwrites the raisin data. So, I'm trying to
figure out how I can store new RaisinCookies objects in the list
without it overwriting the previous entry.
I've tried to use accessCookie = gcnew RaisinCookies. But a
NullException is thrown on the ChocolateCookie s and RaisinCookies objs
when you try to use them as written above.

Does anyone have any suggestions?

Mar 30 '07 #2

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

Similar topics

49
2893
by: Steven Bethard | last post by:
I promised I'd put together a PEP for a 'generic object' data type for Python 2.5 that allows one to replace __getitem__ style access with dotted-attribute style access (without declaring another class). Any comments would be appreciated! Thanks! Steve ----------------------------------------------------------------------
10
3079
by: Diego F. | last post by:
Hello. I need to store custom objects in a SQL Server 2000 table. Which is the easiest way to do it? Do I need to write methods to store each attribute separately from C# app to the table and the opposite as well? Regards, Diego F.
10
2177
by: Mark Rae | last post by:
Hi, This relates to the previous thread "Disappearing Sessions", but is a bit more generic so I thought I'd start a new thread. This one relates to the storing of objects in Session once only to prevent the system having to constantly query the database for the same information. I'm currently upgrading a v1.1 app to v2 (that's all I seem to do these days!), and it contains a class called CUser which holds details of the currently...
0
2509
by: metaperl | last post by:
A Comparison of Python Class Objects and Init Files for Program Configuration ============================================================================= Terrence Brannon bauhaus@metaperl.com http://www.livingcosmos.org/Members/sundevil/python/articles/a-comparison-of-python-class-objects-and-init-files-for-program-configuration/view
3
1415
by: Hunter | last post by:
Hi, In one of my forms I need hold an array of objects (same class) that is dynamic at runtime. Instead of using an array I am looking at ArrayList or Hashtable. Any suggestions?
3
2261
by: Seth Gecko | last post by:
Hi I am working with generic lists of various objects and a control dealing with these lists. For instance: A parent form holds: dim Walls as List(Of wall) dim Segments as List(Of segment) The parent form have a custom control, which have a public sub looking
3
1783
by: bg_ie | last post by:
Hi, I currently use ArrayList to store a set of objects all of which have the same type. The reason I use ArrayList is because it allows me Add new items to the array. Should I be using something other than ArrayList to serve this purpose? Its just that i have to cast my objects each time I access them, as follows - ArrayList xmlElements = new ArrayList();
5
1244
by: Cirene | last post by:
I am writing a shopping cart app in asp.net. So far I created 2 classes, 1 for customer_info (name, address, email), 1 for product_info (prodname, price, description). As the shopper adds things to the cart and navigates throught the site to shop more, should I store this info in a session var? What is the typical way? Should I create another class for cart and store an array of product_info to keep track of what's in the cart,...
2
2472
by: Andrus | last post by:
Winforms UI assembly has static FormManager.FormCreator method which creates forms taking entity as parameter. I need to pass this method to business objects in business assembly so that business methods can also create forms but does not have reference to UI assembly. I tried code below but got compile errows shown in comments. How to fix ? Andrus.
0
9522
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
10111
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
9948
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9902
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8770
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6603
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
5215
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...
1
3866
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
3446
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.