2
votes
4answers
68 views

Access property/variable from unknown object

I have a list of 'object' that has different kinds of objects in it. I need to be able to edit/read a property of the objects that all of them have, but I don't know how to do that. ...
0
votes
2answers
58 views

List of different objects that implement an interface [closed]

I saw something similar to this using inheritance but I want to use an interface I want to create a single arraylist consisting of different objects. ArrayList containing the following objects ...
0
votes
1answer
39 views

Moving objects as a list

So in the below code I am trying to give a menu of instructions. What I am having problems with is the 'N' command section that calls the MakeTurtle() function. I am trying to add all turtles to a ...
0
votes
3answers
48 views

make object from list

Ok so I have this code: earth = makeWorld() def turtle(): list = ['Bill', 'Fred'] for name in list: print name name = makeTurtle(earth) What I am wanting to do is iterate through the ...
1
vote
3answers
76 views

Effective C# 2D lists

I am creating a State-Manager for a program. Each state will have a ID and a State class. I can add as many stats as I want by using an Add() function. Using a Change(ID) function will get change the ...
0
votes
0answers
9 views

Duplicate or False Objects in List Python

The following code is not correct. Can you tell me why i get a list with elements that should be empty .. i = 0 for post in posts: posts_complete[i].post = post print(not ...
0
votes
0answers
8 views

Datagrid show name of my objects .NET, how can i do to show the values from my objects?

i have a problem. i have a list of objetcs an some of my objects have inside others objects, and when i put this list into my DataSource of the grid i have this: I USE .NET 2010 my question is, how ...
0
votes
1answer
32 views

Retrieving Data from BLL to labels

I have a problem with regards on passing value from ListPageObj to show the value on the labels. How can I be able to get the value? BLL public List<ListPageObj> MyList(int ItemID) { ...
0
votes
2answers
48 views

C++ Sorting Custom Objects in a list

I am having trouble sorting a list of custom class pointers. The class I need to sort are events. These get assigned a random time and I need to do them in the right order. #include <list> ...
0
votes
1answer
43 views

Full copy small List to Container List, not only reference

I was hoping the new keyword, would not only create a new object, but also with unique memory references. If I do this, and after Clear the "tinyList", the bigList will also be cleared. ...
0
votes
1answer
39 views

Error: Cannot assign QObject* to QQuickItem*

I get this error when I try to show either a dialog or a popup in a tab. I don't understand why. In other apps I've made, it works, but I cannot see the difference between them. What am I doing ...
1
vote
2answers
47 views

Python Count Elements in a List of Objects with Matching Attributes

I am trying to find a simple and fast way of counting the number of Objects in a list that match a criteria. e.g. class Person: def __init__(self, Name, Age, Gender): self.Name = Name ...
-1
votes
2answers
65 views

Java make a list of classes with multiple objects

I want to create a list of classes with different attributes but i'm facing a problem: when I add a new one, all the others are modify.(the code is really big so i'm posting just a small sample) ...
0
votes
3answers
89 views

c#: Object reference not set to an instance of an object

This is part of my code. List<DateTime>[] newarraydate1 = new List<DateTime>[70]; DateTime temp1 = arraydate1[k][aa]; newarraydate1[k].Add(temp1); I used messagebox.show(temp1) and ...
0
votes
2answers
72 views

How to populate a treeview from a list of objects

I'm having a problem populating my treeview from my list of objects. I've been looking for solutions on google, I found some topic close to my problem, but none of them solved it. I have a List with ...
1
vote
0answers
123 views

List of Object Slow to load with 1000+ records [closed]

I have a custom object; lets call it Car Car has several properties List<Wheels> wheels {get; set;} string licenseplate {get; set;} int doors {get; set;} Engine engine {get; ...
3
votes
2answers
68 views

Subsetting Data Frame Based on Contents of a “Column” List

Set-Up I have a list matrix, where one of the "columns" is a list (I realize it's an odd dataset to work with, but I find it useful for other operations). Each entry of the list is either; (1) empty ...
-3
votes
1answer
47 views

How can I create an object and store it in an array list in Java? [closed]

I've just never done it before and after reading a few forum posts its still as clear as mud. Help would be much appreichated! Thanks!
1
vote
2answers
53 views

Sorting a list of objects

I'm trying to sort a list of objects depending on the return value of a method (call it Q()) in the classes that instantiate the object. Both classes Decaf and Regular derive from the same class, ...
1
vote
3answers
124 views

List of vectors [closed]

I am trying to figure out how to properly use a list of vectors. I understand how to declare list< vector<int> > variableName; but I do not know how to actually set anything to it or ...
3
votes
1answer
73 views

return object from dictionary of nested lists when a condition (python)

I have a dictionary that looks like: myD={'key_0':[[['descrp_0_0'],Obj_0_0],.....,[['descrp_0_N'],obj_0_N]] ,....., 'key_N':[[['descrp_N_0'],Obj_N_0],.....,[['descrp_N_N'],obj_N_N]]} All objs ...
0
votes
1answer
46 views

Removing an object instance from a list in python

I have this elevator assignment and I'm stuck in 1 place. I have a building object with a list of customers in it. I'm trying a method for a customer to enter an elevator - customer is appended to ...
0
votes
1answer
31 views

Adding List - two different methods

I have a list of ClassRooms and then I get a list of students inside that classroom. Here in this method, I create a list of ClassRoom first. then I get the list of students in that classroom. Now ...
1
vote
2answers
136 views

Generic Linked List of Objects (Java)

I'm pretty new to Java, with this being my second class (in College) using it. Towards the beginning of the semester, I made a simple class representing Zombies that holds their age, type, and name. ...
1
vote
2answers
44 views

Getting a variable from a list of objects

How would you get a variable from each object in a list? I've got this so far: void SortList() { int j = modules.Count; string[] titles = new string[j]; for (int i = 0; i > ...
0
votes
0answers
43 views

c# childing and Listing dynamic objects?

Hope this isnt asking too much, but I'm having real trouble with this. I have 4 classes: namespace stageManagement { class Stage { private string number; private string stgName; ...
0
votes
1answer
27 views

Passing parameters with multiple objects

So what I want to do is pass in an object list, but I have many different ones. (Swords, Chestplates etc). How can I pass in multiple objects to the parameter? ListToSave = testObject.ChestPlateList; ...
0
votes
1answer
10 views

How do I diplay information from a List<T> read in from XML?

So far A have created the object class module and a way to input the data which consists of different types. after the object has been created it is stored in a list these objects then can be written ...
0
votes
0answers
45 views

Need Help creating Objects from parsed XML data

I’m working on a project in which I will us a DOM parser to parse an XML file containing the following airport information: Name, FAA ID, latitude/longitude, and url. What I would like to do right ...
0
votes
1answer
32 views

Adding contents of object to list rather then parameter type?

Hopefully I am describing this correctly and clear enough. I am trying to save multiple details entered by a user and save them to list. However the current way I am doing so is only saving the object ...
0
votes
1answer
120 views

How to use a method from a generic object list iterator to call another class' equals method

I am taking an intro to Java course, and we are learning about how to make a generic object list iterator (I call it List) that can be extended into more specific lists later. This way, if I decide to ...
0
votes
1answer
48 views

Best way to modify a variable by a list of objects in C#

I am trying to build an upgrade system for a project in unity with C# and was wondering what might be the best way to modify a variable, by an array of custom objects (size may vary) that have ...
0
votes
1answer
54 views

Using a function inside a class

I am trying to make a receipt program by making a list of ware objects. I do this by makng a class and function like: class ware(object): def __init__(self, code, name, price, quantity): ...
-4
votes
2answers
78 views

How to add list of objects in c#

I have a user that has multiple cars. I need to create a list of object of all the properties of all his cars. His CarTable UserID UserCarID 101 C101 101 C102 101 C103 His ...
1
vote
3answers
63 views

c# Sorting a Custom List

I have the following list: public class Address{ public string Number { get; set; } public string Street { get; set; } public string Suburb { get; set; } } List<Address> ...
3
votes
2answers
105 views

.IndexOf function returns a negative in vb.net for a List of class

I've been having no end of trouble using a list of a class structure - I've been trying to make a dictionary in console. Every element in the list has four properties: the .Word, the .Definition, the ...
0
votes
1answer
82 views

Trouble accessing child objects in Firebase

I'm trying to pull a list of connected users in Firebase to simply populate a select dropdown. My problem is that I can't seem to access the child objects properly. Using connectedUsers.userName (see ...
0
votes
5answers
199 views

Consuming web service in C# -List

score#UPDATED# This probably sounds pretty dumb but I've been stuck on this problem for three days now! I am new to C#. I am trying to consume a web service in C#. I managed to consume the web ...
0
votes
0answers
642 views

Display java object in jsp page using struts framework

I was developed a dynamic web project using struts framework and eclipse. I want to display java object in jsp page. My problem is database values are assign to the object. But that values are not ...
-2
votes
2answers
39 views

Java Has-a relationship with List<ObjectA>

So im trying to get my head round the has-a relationship between classes and Id like some help with one instance: public class Test{ List<ObjectA> list; } Is this Test has-a List or Test ...
0
votes
1answer
53 views

Python call a member function or variable of an object that is in a list of objects

I have a list of objects. I want to call the variables or functions of the objects in that list. (With so many basic keywords in this problem, it's been quite difficult to find a solution or guide for ...
0
votes
1answer
47 views

Adding a item to a list without a for loop in Salesforce

Say for instance, I have a list of objects (obj1). Within each record of the obj1, there's a field value (var1). Is there anyway to add all the values of var1 within the list of obj1 to another list ...
-1
votes
1answer
35 views

Object creation

This is simply for the "Joy of Learning." I'm entirely self-taught from books and tutorials and still very new to programming. I'm trying to explore a concept of creating objects from a list. Here is ...
1
vote
1answer
38 views

search a list of objects by attributes and return rest of attributes associated with that object

I have a list of objects(People) these people have certain attributes with them, e/g name, age, DOB etc. How would I do about searching for a certain person by their name and then returning the rest ...
1
vote
2answers
52 views

How do you store objects in python and how you access them

during our school project we have a task to implement a working "Login System" using python. I have done almost everything but I keep struggling with two of the functions implemented in the program. I ...
1
vote
2answers
88 views

Getting object name from list [duplicate]

Is there a way to retrieve the name of an object stored in a list? What I want to do is to add an object name - the name of matrix in this particular case - prior to printing out properties of that ...
0
votes
1answer
26 views

Python Object contains list of another object throws AttributeError

Python version 3.3 w/ Aptana IDE I'm teaching myself python in my spare time at work so I decided to recreate a poker game that my friends and I play. To facilitate the various calls to different ...
0
votes
2answers
45 views

Storing a list of objects and identifying one property as a Key for fast lookup

Lets say I had a List of storyCharacter objects. Each object stores an ID#, name, and favorite color, such as the example below: ID# | Name | Favorite Color 21 | Optimus | Blue ...
1
vote
1answer
64 views

Converting object to List<object>

I've looked at similar questions but nothing quite fits. I have an object which happens to contain a List. I'd like to get it into something I can enumerate. For example: object listObject; ...
0
votes
1answer
58 views

Have ConcurrentModificationException even with synchronized keyword used

I have a list my defined object that return from a network service ( network svc will update this list). At a certain point of time, I want to render what I have already had in that this on my ...

1 2 3 4 5