1
vote
4answers
64 views
Initialize a list of objects in Python
Hi all,
I'm a looking to initialize an array/list of objects that are not empty -- the class constructor generates data. In C++ and Java I would do something like this:
Object l …
0
votes
3answers
166 views
IList implementations fall into three categories: read-only, fixed-size, variable-size
What does this mean? I am returning a IList<T> from my business layer and then adding items from the UI, but the app is complaining that it's a fixed-size list. How can I ove …
1
vote
6answers
135 views
Suppose I have 2 vectors. What algorithms can I use to compare them?
Company 1 has this vector:
['books','video','photography','food','toothpaste','burgers'] ... ...
Company 2 has this vector:
['video','processor','photography','LCD','power supp …
2
votes
2answers
143 views
c# - How to deserialize a generic list<T> when I don’t know the type of (T)?
Hi, for auditory reasons I stores the arguments of the business methods serialized into the database using the binaryformatter.
The problem is that when an argument is a generic …
0
votes
1answer
7 views
Searching object property in a predefined list using HQL
Hello,
I'm trying to make a query in HQL that see if the id of a person is in a list of predefined ids.
For example, I would like to find all persons that have id 1 or 2 in a dat …
0
votes
4answers
55 views
A generic type as a parameter.
My first question is, is it possible to specify a generic type as a parameter,
secondly, is anything such as the pseudo code ive listed below possible?
I assume it will be using . …
2
votes
6answers
111 views
Java: Sort an unmodifiable list
How would one do this?
I have tried creating a new, empty list, then copying unmodifiable list's elements to it, but I'm getting unsupported operation error.
Any help is apprecia …
8
votes
10answers
787 views
Array versus List<T>: When to use which?
MyClass[] array;
List<MyClass> list;
What are the scenarios when one is preferable over the other? And why?
1
vote
7answers
106 views
Convert a Python list with strings all to lowercase or uppercase
I have a python list variable that contains strings. Is there a python function that can convert all the strings in one pass to lowercase and vice versa, uppercase?
Regards
0
votes
3answers
13 views
Showing 10 recent (same month/year?) items from a category (Wordpress)
I'd like to display 10 recent posts (probably from the current month or year) from the "featured" category in random order, i.e, rotate posts on each refresh/pageload.
I'd like to …
1
vote
5answers
701 views
Merge two lists of lists - Python
This is a great primer but doesn't answer what I need:
http://stackoverflow.com/questions/464342/combining-two-sorted-lists-in-python
I have two Python lists, each is a list of da …
1
vote
5answers
103 views
Make Dictionary From 2 List
trying to make dictionary with 2 list one being the key and one being the value but I'm having a problem. This is what I have so far:
d={}
for num in range(10):
for nbr in ran …
0
votes
8answers
83 views
Returning a match from a List<KeyValuePair<string,string>>
Hello,
I currently have a class that uses the KeyValuePair with List to store a collection of tracks in the format of Key = track, Value = artist.
I'm trying to provide a way of …
1
vote
6answers
52 views
how to copy a list to a new list, or retrieve list by value in c#
I noticed in c# there is a method for Lists:
CopyTo -> that copies to arrays, is there a nicer way to copy to a new list? problem is, I want to retrieve the list by value to be abl …
0
votes
2answers
55 views
Returning a property of type List<>
Hello there,
I'm currently trying to return a match to a Foreach statement which is contained in a list.
I have a class that has a List of string, i'm using this as a collection o …
