active questions tagged collections - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T22:15:32Zhttp://stackoverflow.com/feeds/tag/collectionshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1882895/how-can-i-create-a-java-list-using-the-member-variables-of-an-existing-list-with1How can I create a java list using the member variables of an existing list, without using a for loop?batthink2009-12-10T18:07:12Z2009-12-10T19:36:05Z
<p>I have a java list</p>
<pre><code>List<myclass> myList = myClass.selectFromDB("where clause");
//myClass.selectFromDB returns a list of objects from DB
</code></pre>
<p>But I want a different list, specifically.</p>
<pre><code>List<Integer> goodList = new ArrayList<Integer>();
for(int i = 0;i++; i<= myList.size()) {
goodList[i] = myList[i].getGoodInteger();
}
</code></pre>
<p>Yes, I could do a different query from the DB in the initial myList creation, but assume for now I must use that as the starting point and no other DB queries. Can I replace the for loop with something much more efficient?</p>
<p>Thank you very much for any input, apologies for my ignorance.</p>
http://stackoverflow.com/questions/1881472/if-you-arent-supposed-to-return-collections-to-callers-how-should-you-return-a4If you aren't supposed to return collections to callers, how should you return a collection of data to a caller?Erik2009-12-10T14:52:15Z2009-12-10T17:30:23Z
<p>I am writing a method that's intended to return a dictionary filled with configuration keys and values. The method that's building up this dictionary is doing so dynamically, so I need to return this set of keys and values as a collection (probably <code>IDictionary<string, string></code>). In my various readings (sources escape me at the moment), the general consensus on returning collection types from method calls is <strong>not to</strong>.</p>
<p>I understand the reasons for this policy, and I tend to agree, but in cases like this I see no other alternative. This is my question: is there a way I can return this data to the caller, while following this principle?</p>
<p><strong>Edit</strong>: The reasons I've heard for not allowing this behavior is that a collection or dictionary type that is meant to be consumed (but not modified) by the client exposes too much behavior, giving the illusion that the caller can modify the type. Dictionary for example has Add and Remove methods, as well as a mutable indexer. If the values in the dictionary are meant to be read-only, these methods are superfluous at best. Further damage can be done if the internal collection is exposed, and the 'owner' of the collection is not anticipating changes to the collection from outside sources.</p>
<p>There are other reasons I've heard, but I can't recall them off-hand - these are the most pertinent in my situation.</p>
<p><strong>Edit</strong>: More clarification: The problem I'm having is that I'm building an API, so I have no control over the client calling this function. Cloning the dictionary isn't a problem, but I'm trying to keep my API as clean as possible. Returning a dictionary with methods such as Add and Remove implies that the collection can or should be modified, which isn't the case. Modifications here are meaningless, and so I don't want to expose the promise of that functionality through the returned type's interface.</p>
<p><hr /></p>
<p><strong>Resolution</strong>: To come to terms with my desire for a clean API, I'm going to write a custom Dictionary class that does not expose the mutating methods Add and Remove, or the set indexer. This type will not implement <code>IDictionary</code>, but I will write a method <code>ToDictionary</code> that will return the data within an <code>IDictionary</code>. It will implement <code>IEnumerable<KeyValuePair<TKey, TValue>></code> in order to have access to the standard LINQ operations over enumerables. Now all I need is a name for my custom dictionary type... =) Thanks everyone.</p>
http://stackoverflow.com/questions/1878087/asp-net-mvc-how-to-maintain-textbox-state-when-your-viewmodel-is-a-collection-li0ASP.NET MVC: How to maintain TextBox State when your ViewModel is a Collection/List/IEnumerableJared2009-12-10T01:19:29Z2009-12-10T13:49:26Z
<p>I am using ASP.NET MVC 2 Beta. I can create a wizard like workflow using Steven Sanderson's technique (in his book Pro ASP.NET MVC Framework) except using Session instead of hidden form fields to preserve the data across requests. I can go back and forth between pages and maintain the values in a TextBox without any issue when my model is not a collection. An example would be a simple Person model:</p>
<pre><code>public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public string Email { get; set; }
}
</code></pre>
<p>But I am unable to get this to work when I pass around an IEnumerable. In my view I am trying to run through the Model and generate a TextBox for Name and Email for each Person in the list. I can generate the form fine and I can submit the form with my values and go to Step2. But when I click the Back button in Step2 it takes me back to Step1 with an empty form. None of the fields that I previously populated are there. There must be something I am missing. Can somebody help me out?</p>
<p>Here is my View:</p>
<pre><code><% using (Html.BeginForm()) { %>
<% int index = 0;
foreach (var person in Model) { %>
<fieldset>
<%= Html.Hidden("persons.index", index.ToString())%>
<div>Name: <%= Html.TextBox("persons[" + index.ToString() + "].Name")%></div>
<div>Email: <%= Html.TextBox("persons[" + index.ToString() + "].Email")%></div>
</fieldset>
<% index++;
} %>
<p><input type="submit" name="btnNext" value="Next >>" /></p>
<% } %>
</code></pre>
<p>And here is my controller:</p>
<pre><code>public class PersonListController : Controller
{
public IEnumerable<Person> persons;
protected override void OnActionExecuting(ActionExecutingContext filterContext)
{
persons = (Session["persons"]
?? TempData["persons"]
?? new List<Person>()) as List<Person>;
// I've tried this with and without the prefix.
TryUpdateModel(persons, "persons");
}
protected override void OnResultExecuted(ResultExecutedContext filterContext)
{
Session["persons"] = persons;
if (filterContext.Result is RedirectToRouteResult)
TempData["persons"] = persons;
}
public ActionResult Step1(string btnBack, string btnNext)
{
if (btnNext != null)
return RedirectToAction("Step2");
// Setup some fake data
var personsList = new List<Person>
{
new Person { Name = "Jared", Email = "test@email.com", },
new Person { Name = "John", Email = "test2@email.com" }
};
// Populate the model with fake data the first time
// the action method is called only. This is to simulate
// pulling some data in from a DB.
if (persons == null || persons.Count() == 0)
persons = personsList;
return View(persons);
}
// Step2 is just a page that provides a back button to Step1
public ActionResult Step2(string btnBack, string btnNext)
{
if (btnBack != null)
return RedirectToAction("Step1");
return View(persons);
}
}
</code></pre>
http://stackoverflow.com/questions/81346/most-efficient-way-to-increment-a-map-value-in-java10Most efficient way to increment a Map value in Javagregory2008-09-17T09:10:11Z2009-12-09T21:14:46Z
<p>I hope this question is not considered too basic for this forum, but we'll see. I'm wondering how to refactor some code for better performance that is getting run a bunch of times.</p>
<p>Say I'm creating a word frequency list, using a Map (probably a HashMap), where each key is a String with the word that's being counted and the value is an Integer that's incremented each time a token of the word is found.</p>
<p>In Perl, incrementing such a value would be trivially easy:</p>
<pre><code>$map{$word}++;
</code></pre>
<p>But in Java, it's much more complicated. Here the way I'm currently doing it:</p>
<pre><code>int count = map.containsKey(word) ? map.get(word) : 0;
map.put(word, count + 1);
</code></pre>
<p>Which of course relies on the autoboxing feature in the newer Java versions. I wonder if you can suggest a more efficient way of incrementing such a value. Are there even good performance reasons for eschewing the Collections framework and using a something else instead?</p>
<p>Update: I've done a test of several of the answers. See below.</p>
http://stackoverflow.com/questions/214136/why-not-allow-an-external-interface-to-override-hashcode-equals-for-a-hashmap2Why not allow an external interface to override hashCode/equals for a HashMap?volley2008-10-17T23:06:24Z2009-12-09T20:48:12Z
<p>With a <code>TreeMap</code> it's trivial to bypass the keys' natural ordering using a <code>Comparable</code>.
<code>HashMap</code>s however cannot be controlled in this manner.</p>
<p>I suspect it would be both easy and useful to design an interface and to retrofit this into <code>HashMap</code> (or a new class)? Something like this, except with better names:</p>
<pre><code> interface Hasharator<T> {
int alternativeHashCode(T t);
boolean alternativeEquals(T t1, T t2);
}
class HasharatorMap<K, V> {
HasharatorMap(Hasharator<? super K> hasharator) { ... }
}
class HasharatorSet<T> {
HasharatorSet(Hasharator<? super T> hasharator) { ... }
}
</code></pre>
<p>The <a href="http://stackoverflow.com/questions/212562/is-there-a-good-way-to-have-a-mapstring-get-and-put-ignore-case">case insensitive <code>Map</code></a> problem gets a trivial solution:</p>
<pre><code> new HasharatorMap(String.CASE_INSENSITIVE_EQUALITY);
</code></pre>
<p>Would this be doable, or can you see any fundamental problems with this approach?</p>
<p>Is the approach used in any existing (non-JRE) libs? (Tried google, no luck.)</p>
<p>EDIT: Nice workaround presented by hazzen, but I'm afraid this is the workaround I'm trying to avoid... ;)</p>
<p>EDIT: Changed title to no longer mention "Comparator"; I suspect this was a bit confusing. </p>
<p>EDIT: Accepted answer with relation to performance; would love a more specific answer!</p>
<p>EDIT: There is an implementation; see the accepted answer below.</p>
http://stackoverflow.com/questions/654480/is-there-a-java-collection-or-similar-that-behaves-like-an-auto-id-sql-table6Is there a Java Collection (or similar) that behaves like an auto-id SQL table?Hanno Fietz2009-03-17T14:26:30Z2009-12-09T16:25:08Z
<p>Note that I'm not actually doing anything with a database here, so ORM tools are probably not what I'm looking for.</p>
<p>I want to have some containers that each hold a number of objects, with all objects in one container being of the same class. The container should show some of the behaviour of a database table, namely:</p>
<ul>
<li>allow one of the object's fields to be used as a unique key, i. e. other objects that have the same value in that field are not added to the container.</li>
<li>upon accepting a new object, the container should issue a numeric id that is returned to the caller of the insertion method.</li>
</ul>
<p>Instead of throwing an error when a "duplicate entry" is being requested, the container should just skip insertion and return the key of the already existing object.</p>
<p>Now, I would write a generic container class that accepts objects which implement an interface to get the value of the key field and use a HashMap keyed with those values as the actual storage class. Is there a better approach using existing built-in classes? I was looking through HashSet and the like, but they didn't seem to fit.</p>
http://stackoverflow.com/questions/296133/genericized-commons-collection7Genericized commons collectionDon2008-11-17T16:48:55Z2009-12-09T09:56:08Z
<p>Hi,</p>
<p>I'm astonished that the <a href="http://commons.apache.org/collections/" rel="nofollow">Apache Commons Collections</a> project still hasn't got around to making their library generics-aware. I really like the features provided by this library, but the lack of support for generics is a big turn-off. There is a <a href="http://larvalabs.com/collections/index.html" rel="nofollow">Lavalabs fork of Commons Collections which does support generics</a>, which seems to claim backward compatibility, but when I tried updating to this version, my web application failed to start (in JBoss).</p>
<p>My questions are:</p>
<ul>
<li>Whether anyone has successfully updated from Commons Collections to the fork mentioned above</li>
<li>If Commons Collections has any plans to add support for generics</li>
</ul>
<p>BTW, I'm aware of Google collections, but am reluctant to use it until the API stabilises.</p>
<p>Cheers,
Don</p>
http://stackoverflow.com/questions/1870770/creating-a-true-hashmap-implementation-with-object-equality-in-actionscript-31Creating a "true" HashMap implementation with Object Equality in ActionScript 3JonnyReeves2009-12-09T00:04:47Z2009-12-09T04:53:25Z
<p>I've been spending some of my spare time working a set of collections for ActionScript 3 but I've hit a pretty serious roadblock thanks for the way ActionScript 3 handles equality checks inside Dictionary Objects.</p>
<p>When you compare a key in a dictionary, ActionScript uses the === operator to perform the comparison, this has a bit of a nasty side effect whereby only references to the same instance will resolve true and not objects of equality. Here's what I mean:</p>
<pre><code>const jonny1 : Person = new Person("jonny", 26);
const jonny2 : Person = new Person("jonny", 26);
const table : Dictionary = new Dictionary();
table[jonny1] = "That's me";
trace(table[jonny1]) // traces: "That's me"
trace(table[jonny2]) // traces: undefined.
</code></pre>
<p>The way I am attempting to combat this is to provide an Equalizer interface which looks like this:</p>
<pre><code>public interface Equalizer
{
function equals(object : Object) : Boolean;
}
</code></pre>
<p>This allows to to perform an instanceOf-esq. check whenever I need to perform an equality operation inside my collections (falling back on the === operator when the object doesn't implement Equalizer); however, this doesn't get around the fact that my underlying datastructure (the Dictionary Object) has no knowledge of this.</p>
<p>The way I am currently working around the issue is by iterating through all the keys in the dictionary and performing the equality check whenever I perform a containsKey() or get() operation - however, this pretty much defeats the entire point of a hashmap (cheap lookup operations).</p>
<p>If I am unable to continue using a Dictionary instance as the backing for map, how would I go about creating the hashes for unique object instances passed in as keys so I can still maintain equality?</p>
http://stackoverflow.com/questions/570659/how-do-i-convert-a-groovy-string-array-to-a-java-string-array2How do I convert a Groovy String array to a Java String Array?Kevin Williams2009-02-20T18:06:59Z2009-12-09T03:13:28Z
<p>I'm trying to call a methond on a Java class from a Groovy class. The Java method has a String array as a parameter, and I have a collection of Strings in my Groovy class. How do I convert the Groovy collection to a Java String array?</p>
<p>Java Method:</p>
<pre><code>public class SomeJavaClass{
public void helpDoSomething(String[] stuff){
}
}
</code></pre>
<p>Groovy code</p>
<pre><code>class SomeGroovyClass {
def data = ["a","b","c"]
def doSomething = {
def javaClass = new SomeJavaClass()
javaClass(data) //Groovy passes ArrayList, Java class expects String[] ???
}
}
</code></pre>
http://stackoverflow.com/questions/1866704/collection-as-collection-of-base-type-c-2-01Collection as Collection of base type c# 2.0kpollock2009-12-08T12:41:12Z2009-12-08T15:30:09Z
<p>I am aware of <a href="http://stackoverflow.com/questions/1174328/passing-a-generic-collection-of-objects-to-a-method-that-requires-a-collection-of">http://stackoverflow.com/questions/1174328/passing-a-generic-collection-of-objects-to-a-method-that-requires-a-collection-of</a></p>
<p>How do I do it in .Net 2.0 where I don't have .Cast ???</p>
<p>It has to be reference equality i.e. copies of the list won't do.</p>
<p>To re-iterate - I cannot return a <em>new</em> list - it has to be the same list</p>
http://stackoverflow.com/questions/1722726/is-the-scala-2-8-collections-library-a-case-of-the-longest-suicide-note-in-histo36Is the Scala 2.8 collections library a case of "the longest suicide note in history" ?oxbow_lakes2009-11-12T14:49:57Z2009-12-08T06:33:46Z
<p><em>First note the inflammatory subject title is a <a href="http://en.wikipedia.org/wiki/The%5Flongest%5Fsuicide%5Fnote%5Fin%5Fhistory" rel="nofollow">quotation made about the manifesto of a UK political party</a> in the early 1980s</em>. This question is subjective but it is a genuine question, I've made it CW and I'd like some opinions on the matter.</p>
<p>Despite whatever my wife and coworkers keep telling me, I don't think I'm an idiot: I have a good degree in mathematics from the <a href="http://www.ox.ac.uk/" rel="nofollow">University of Oxford</a> and I've been programming commercially for almost 12 years and in <a href="http://en.wikipedia.org/wiki/Scala%5F%28programming%5Flanguage%29" rel="nofollow">Scala</a> for about a year (also commercially).</p>
<p>I have just started to look at the <a href="http://lampsvn.epfl.ch/trac/scala/browser/scala/trunk/src/library/scala/collection" rel="nofollow">Scala collections library re-implementation</a> which is coming in the imminent <strong>2.8</strong> release. Those familiar with the library from 2.7 will notice that the library, from a usage perspective, has changed little. For example...</p>
<pre><code>> List("Paris", "London").map(_.length)
res0: List[Int] List(5, 6)
</code></pre>
<p>...would work in either versions. <strong>The library is eminently useable</strong>: in fact it's fantastic. However, those previously unfamiliar with Scala and <em>poking around to get a feel for the language</em> now have to make sense of method signatures like:</p>
<pre><code>def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That
</code></pre>
<p>For such simple functionality, this is a daunting signature and one which I find myself struggling to understand. <strong>Not that I think Scala was ever likely to be the next Java</strong> (or /C/C++/C#) - I don't believe its creators were aiming it at that market - but I think it is/was certainly feasible for Scala to become the next Ruby or Python (i.e. to gain a significant commercial user-base) </p>
<ul>
<li>Is this going to put people off coming to Scala?</li>
<li>Is this going to give Scala a bad name in the commercial world as an <em>academic plaything</em> that only dedicated PhD students can understand? Are <a href="http://en.wikipedia.org/wiki/Chief%5Ftechnical%5Fofficer" rel="nofollow">CTO</a>s and heads of software going to get scared off?</li>
<li>Was the library re-design a sensible idea?</li>
<li>If you're using Scala commercially, are you worried about this? Are you planning to adopt 2.8 immediately or wait to see what happens?</li>
</ul>
<p><a href="http://en.wikipedia.org/wiki/Steve%5FYegge" rel="nofollow">Steve Yegge</a> <a href="http://steve-yegge.blogspot.com/2008/06/rhinos-and-tigers.html" rel="nofollow">once attacked Scala</a> (mistakenly in my opinion) for what he saw as its overcomplicated type-system. I worry that someone is going to have a field day spreading <a href="http://en.wikipedia.org/wiki/Fear,%5Funcertainty%5Fand%5Fdoubt" rel="nofollow">fud</a> with this API (similarly to how Josh Bloch scared the <a href="http://en.wikipedia.org/wiki/Java%5FCommunity%5FProcess" rel="nofollow">JCP</a> out of adding closures to Java).</p>
<p><strong>Note</strong> - <em>I should be clear that, whilst I believe that Josh Bloch was influential in the rejection of the BGGA closures proposal, I don't ascribe this to anything other than his honestly-held beliefs that the proposal represented a mistake.</em> </p>
http://stackoverflow.com/questions/1863442/ror-partials-with-resources0RoR: partials with resourcesPatrick Oscity2009-12-07T22:43:16Z2009-12-07T22:49:18Z
<p>I have a problem, trying to render partials in ruby on rails with the short notation for resoures. Somehow, RoR displays simply nothing that has to do with the partial, but i get no errors as well. I mean, the resulting HTML looks like the call for the partial simply wouldn't be there. I'm also confused, because i can see in the log, that rails rendered the partial 2 times (that would be ok, i have two test entries in the dev db), but i get no output in the browser. What am i doing wrong? Thanks in advance! This is my code:</p>
<p>app/views/tutorials/_tutorial.html.erb:</p>
<pre><code><div class="tutorial">
<h3><%= link_to tutorial.title, tutorial %></h3>
<span class="person"><%=h tutorial.tutor %></span>
<span class="time"><%=h german_time(tutorial.starts_at) %></span>
<span class="location"><%=h tutorial.location %></span>
<div class="description"><%=h tutorial.description %></div>
<% if admin? %>
<%= link_to 'Edit', edit_tutorial_path(tutorial) %> |
<%= link_to 'Delete', tutorial, :confirm => 'Are you sure?', :method => :delete %>
<% end %>
</div> <!-- end .tutorium -->
</code></pre>
<p>app/views/tutorials/index.html.erb:</p>
<pre><code><h2>Tutorials</h2>
<% render :partial => @tutorials %>
<% if admin? %>
<%= link_to 'New Tutorial', new_tutorial_path %>
<% end %>
</code></pre>
<p>console log:</p>
<pre><code>Processing TutorialsController#index (for 127.0.0.1 at 2009-12-07 23:39:00) [GET]
Tutorial Load (0.6ms) SELECT * FROM "tutorials"
Rendering template within layouts/application
Rendering tutorials/index
Rendered tutorials/_tutorial (7.1ms)
Rendered tutorials/_tutorial (3.7ms)
Completed in 22ms (View: 17, DB: 1) | 200 OK [http://localhost/tutorials]
</code></pre>
http://stackoverflow.com/questions/1842652/is-there-a-general-concrete-implementation-of-a-keyedcollection2Is there a general concrete implementation of a KeyedCollection?CodeSavvyGeek2009-12-03T20:23:40Z2009-12-07T21:44:23Z
<p>The <a href="http://msdn.microsoft.com/en-us/library/ms132439.aspx" rel="nofollow">System.Collections.ObjectModel.KeyedCollection</a> class is a very useful alternative to <a href="http://msdn.microsoft.com/en-us/library/xfhwa508.aspx" rel="nofollow">System.Collections.Generic.Dictionary</a>, especially when the key data is part of the object being stored or you want to be able to enumerate the items in order. Unfortunately, the class is abstract, and I am unable to find a general concrete implementation in the core .NET framework.</p>
<p>The <a href="http://rads.stackoverflow.com/amzn/click/0321545613" rel="nofollow">Framework Design Guidlines</a> book indicates that a concrete implementation <em>should</em> be provided for abstract types (section 4.4 Abstract Class Design). Why would the framework designers leave out a general concrete implementation of such a useful class, especially when it could be provided by simply exposing a constructor that accepts and stores a <a href="http://msdn.microsoft.com/en-us/library/kt456a2y.aspx" rel="nofollow">Converter</a> from the item to its key:</p>
<pre><code>public class ConcreteKeyedCollection<TKey, TItem> : KeyedCollection<TKey, TItem>
{
private Converter<TItem, TKey> getKeyForItem = null;
public GenericKeyedCollection(Converter<TItem, TKey> getKeyForItem)
{
if (getKeyForItem == null) { throw new ArgumentNullException("getKeyForItem"); }
this.getKeyForItem = getKeyForItem;
}
protected override TKey GetKeyForItem(TItem item)
{
return this.getKeyForItem(item);
}
}
</code></pre>
http://stackoverflow.com/questions/1863096/silverlight-3-datagrid-grouping-detecting-group-header-click-or-header-expand-c0Silverlight 3 DataGrid Grouping - Detecting Group Header Click or Header Expand/CollapsePaul2009-12-07T21:40:24Z2009-12-07T21:40:24Z
<p>I am using a PagedCollectionView in Silverlight 3 to group items in a datagrid. I want to detect when the group headers are clicked but after 6 hours still cannot find any way to do this.</p>
<p>(So that when a collapsed header is clicked I can dynamically load the group's content)</p>
<p>The datagrid is populated like so:</p>
<p>PagedCollectionView collection = new PagedCollectionView(orgMembers);
collection.GroupDescriptions.Add(new PropertyGroupDescription("Generation"));</p>
<p>DataGrid1.ItemsSource = collection;</p>
http://stackoverflow.com/questions/1840765/less-defined-generics-in-c3Less defined generics in c#?Wam2009-12-03T15:44:26Z2009-12-07T20:37:14Z
<p>Is there a way to use a collection of a generic class, without supplying the underlying type ?
Let's explain :</p>
<p>Here is what I'd like to have :</p>
<pre><code>class TimeSerie<TValue> {
enter code here
}
List<TimeSerie<?>> blah;
</code></pre>
<p>Here is what I have to do so far :</p>
<pre><code>class TimeSerie {}
class TypedTimeSerie<TValue> : TimeSerie {}
List<TimeSerie> blah;
</code></pre>
<p>So, any way to use the nice first solution ? (although I guess it would raise problems when trying to cast, for a loop for example ...)</p>
http://stackoverflow.com/questions/1860306/net-how-to-efficiently-check-for-uniqueness-in-a-liststring-of-50-000-items13.NET: How to efficiently check for uniqueness in a List<string> of 50,000 items?Cheeso2009-12-07T14:29:16Z2009-12-07T16:09:51Z
<p>In some library code, I have a List that can contain 50,000 items or more. </p>
<p>Callers of the library can invoke methods that result in strings being added to the list. How do I efficiently check for uniqueness of the strings being added? </p>
<p>Currently, just before adding a string, I scan the entire list and compare each string to the to-be-added string. This starts showing scale problems above 10,000 items. </p>
<p>I will benchmark this, but interested in insight.</p>
<ul>
<li>if I replace the List<> with a Dictionary<> , will ContainsKey() be appreciably faster as the list grows to 10,000 items and beyond? </li>
<li>if I defer the uniqueness check until after all items have been added, will it be faster? At that point I would need to check every element against every other element, still an n^^2 operation. </li>
</ul>
http://stackoverflow.com/questions/269581/what-are-alternatives-to-generic-collections-for-com-interop0What are alternatives to generic collections for COM Interop?Mike Henry2008-11-06T17:43:38Z2009-12-07T15:07:33Z
<p>I am attempting to return a collection of departments from a .NET assembly to be consumed by ASP via COM Interop. Using .NET I would just return a generic collection, e.g. <code>List<Department></code>, but it seems that generics don't work well with COM Interop. So, what are my options?</p>
<p>I would like to both iterate over the list and be able to access an item by index. Should I inherit from <code>List<Department></code>, implement an <code>IList</code>, <code>IList<Department></code> or another interface, or is there a better way? Ideally I would prefer not to have to implement a custom collection for every type of list I need. Also, will <code>List[index]</code> even work with COM Interop?</p>
<p>Thanks,
Mike</p>
<h2>Example .NET components (C#):</h2>
<pre><code>public class Department {
public string Code { get; private set; }
public string Name { get; private set; }
// ...
}
public class MyLibrary {
public List<Department> GetDepartments() {
// return a list of Departments from the database
}
}
</code></pre>
<h2>Example ASP code:</h2>
<pre><code><%
Function PrintDepartments(departments)
Dim department
For Each department In departments
Response.Write(department.Code & ": " & department.Name & "<br />")
Next
End Function
Dim myLibrary, departments
Set myLibrary = Server.CreateObject("MyAssembly.MyLibrary")
Set departments = myLibrary.GetDepartments()
%>
<h1>Departments</h1>
<% Call PrintDepartments(departments) %>
<h1>The third department</h1>
<%= departments(2).Name %>
</code></pre>
<h2>Related questions:</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/161704/using-generic-lists-on-serviced-component">Using Generic lists on serviced component</a></li>
<li><a href="http://stackoverflow.com/questions/56375/are-non-generic-collections-in-net-obsolete">Are non-generic collections in .NET obsolete?</a></li>
</ul>
http://stackoverflow.com/questions/1858570/splitting-one-db-association-into-several-collections-in-hibernate1Splitting one DB association into several collections in Hibernate.tkopec2009-12-07T08:14:28Z2009-12-07T10:23:55Z
<p>I am trying to model such situation - there is a cash transfer (I mean a car that carries money), that has required amounts of each currency, and also an actual amount for each currency. And it seems to me pointless to create two separate classes, one for required amount and another for actual amount. So the implementation would look like this:</p>
<pre><code>@Entity
public class CashTransferCurrencyAmount {
// id, version and so on
@Column(length = 3)
private String currencyCode;
@Basic
private BigDecimal amount;
@ManyToOne
private CashTransfer cashTransfer;
}
@Entity
public class CashTransfer {
// id, version and so on
@OneToMany(mappedBy="cashTransfer")
private Set<CashTransferCurrencyAmount> requiredCurrencyAmountSet = new HashSet<CashTransferAmountCurrency>();
@OneToMany(mappedBy="cashTransfer")
private Set<CashTransferCurrencyAmount> actualCurrencyAmountSet = new HashSet<CashTransferAmountCurrency>();
}
</code></pre>
<p>But how is a CashTransferCurrencyAmount instance to know to which collection it belongs? I have two ideas: </p>
<p>1 - add a discriminator field to CashTransferCurrencyAmount:</p>
<pre><code>public enum RequestType {
ACTUAL,
REQUIRED
}
@Basic
@Enumerated(EnumType.STRING)
private RequestType requestType;
</code></pre>
<p>and add <code>@WHERE</code> annotations to collections in <code>CashTransfer</code>. This is preferable for me. </p>
<p>2 - create two join tables. one for mapping requested amounts and one for mapping actual amounts. I dislike this one as I don't want too many tables in my DB. </p>
<p>Are there any other ways to achieve this? I this approach correct?<br>
And <strong>please</strong> don't tell me to put both requested and actual amounts in one entity. The real case is more complicated, each <code>CashTransferCurrencyAmount</code> has it's own collections so it can't be solved that way. </p>
<p>EDIT<br>
As for requests for complete story - there used to be two values in <code>CashTransferCurrencyAmount</code> - required (I think it should be 'requested') and actual, but now each amount has it's own collection - how this amount is split into denominations. So I need a collection of amounts, each one having a collection of denominations. The type of CurrencyAmount and CurencyDenomination seems to be the same for requested ones and for actual ones. </p>
http://stackoverflow.com/questions/912853/lists-notifypropertychanging0Lists NotifyPropertyChangingCarlo2009-05-26T21:27:08Z2009-12-07T08:00:05Z
<p>Well BindingList and ObservableCollection work great to keep data updated and to notify when one of it's objects has changed. However, when notifying a property is about to change, I think these options are not very good.</p>
<p>What I have to do right now to solve this (and I warn this is not elegant AT ALL), is to implement INotifyPropertyChanging on the list's type object and then tie that to the object that holds the list PropertyChanging event, or something like the following:</p>
<pre><code>// this object will be the type of the BindingList
public class SomeObject : INotifyPropertyChanging, INotifyPropertyChanged
{
private int _intProperty = 0;
private string _strProperty = String.Empty;
public int IntProperty
{
get { return this._intProperty; }
set
{
if (this._intProperty != value)
{
NotifyPropertyChanging("IntProperty");
this._intProperty = value;
NotifyPropertyChanged("IntProperty");
}
}
}
public string StrProperty
{
get { return this._strProperty; }
set
{
if (this._strProperty != value)
{
NotifyPropertyChanging("StrProperty");
this._strProperty = value;
NotifyPropertyChanged("StrProperty");
}
}
}
#region INotifyPropertyChanging Members
public event PropertyChangingEventHandler PropertyChanging;
#endregion
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
#endregion
public void NotifyPropertyChanging(string propertyName)
{
if (this.PropertyChanging != null)
PropertyChanging(this, new PropertyChangingEventArgs(propertyName));
}
public void NotifyPropertyChanged(string propertyName)
{
if (this.PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
public class ObjectThatHoldsTheList : INotifyPropertyChanging, INotifyPropertyChanged
{
public BindingList<SomeObject> BindingList { get; set; }
public ObjectThatHoldsTheList()
{
this.BindingList = new BindingList<SomeObject>();
}
// this helps notifie Changing and Changed on Add
private void AddItem(SomeObject someObject)
{
// this will tie the PropertyChanging and PropertyChanged events of SomeObject to this object
// so it gets notifies because the BindingList does not notify PropertyCHANGING
someObject.PropertyChanging += new PropertyChangingEventHandler(someObject_PropertyChanging);
someObject.PropertyChanged += new PropertyChangedEventHandler(someObject_PropertyChanged);
this.NotifyPropertyChanging("BindingList");
this.BindingList.Add(someObject);
this.NotifyPropertyChanged("BindingList");
}
// this helps notifies Changing and Changed on Delete
private void DeleteItem(SomeObject someObject)
{
if (this.BindingList.IndexOf(someObject) > 0)
{
// this unlinks the handlers so the garbage collector can clear the objects
someObject.PropertyChanging -= new PropertyChangingEventHandler(someObject_PropertyChanging);
someObject.PropertyChanged -= new PropertyChangedEventHandler(someObject_PropertyChanged);
}
this.NotifyPropertyChanging("BindingList");
this.BindingList.Remove(someObject);
this.NotifyPropertyChanged("BindingList");
}
// this notifies an item in the list is about to change
void someObject_PropertyChanging(object sender, PropertyChangingEventArgs e)
{
NotifyPropertyChanging("BindingList." + e.PropertyName);
}
// this notifies an item in the list has changed
void someObject_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
NotifyPropertyChanged("BindingList." + e.PropertyName);
}
#region INotifyPropertyChanging Members
public event PropertyChangingEventHandler PropertyChanging;
#endregion
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
#endregion
public void NotifyPropertyChanging(string propertyName)
{
if (this.PropertyChanging != null)
PropertyChanging(this, new PropertyChangingEventArgs(propertyName));
}
public void NotifyPropertyChanged(string propertyName)
{
if (this.PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
</code></pre>
<p>Sorry, I know this is a lot of code, which takes me back to my main point IT'S A LOT OF CODE to implement this. So my question is, does anyone know a better, shorter, more elegant solution?</p>
<p>Thanks for your time and suggestions.</p>
http://stackoverflow.com/questions/1505940/hibernate-ehcache-evicting-collections-from-2nd-level-cache-not-synchronized-wit4Hibernate/Ehcache: evicting collections from 2nd level cache not synchronized with other DB readsKirill2009-10-01T19:22:35Z2009-12-07T03:57:39Z
<p>I have an application using JPA, Hibernate and ehcache, as well as Spring's declarative
transactions. The load on DB is rather high so everything is cached to speed things up,
including collections. Now it is not a secret that collections are cached separately
from the entities that own them so if I delete an entity that is an element of such
cached collection, persist an entity that should be an element of one, or update an
entity such that it travels from one collection to another, I gotta perform the eviction
by hand.</p>
<p>So I use a hibernate event listener which keeps track of entities being inserted, deleted
or updated and saves that info for a transaction synchronization registered with Spring's
transaction manager to act upon. The synchronization then performs the eviction once the
transaction is committed.</p>
<p><strong>Now the problem is</strong> that quite often, some other concurrent transaction manages to find
a collection in the cache that has just been evicted (these events are usually tenths of a
second apart according to log) and, naturally, causes an EntityNotFoundException to occur.</p>
<p><em>How do I synchronize this stuff correctly?</em></p>
<p>I tried doing the eviction in each of the 4 methods of TransactionSynchronization (which
are invoked at different points in time relative to transaction completion), it didn't help.</p>
http://stackoverflow.com/questions/1856944/c-cli-generics-use-t-in-array-and-other-collections1C++/CLI generics, use T in array<> and other collectionsGuillermo Prandi2009-12-06T23:04:03Z2009-12-06T23:26:34Z
<p>Hi. I'm writing a generics class in C++/CLI (VS2008) to store and manage records of different kinds and I need collections to keep them before flusing them to DB/disk/etc. I was thinking in something like this:</p>
<pre><code>ref class Record
{
// ...
};
generic<typename T>
where T : Record, gcnew()
public ref class Factory
{
public:
// ....functions....
protected:
array<T^> ^ StoredData;
};
</code></pre>
<p>Which of course failed with error C3229 (<em>indirections on a generic type parameter are not allowed</em>). If I remove the '^', the error is then C3149 (<em>cannot use this type here without a top-level '^'</em>). This is easily done in VB.Net (in fact, I'm migrating an existing VB.Net class!), but in C++ I seem to have reached a dead end. Is this actually impossible in C++/CLI?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1789701/java-collection-filtering1Java Collection filteringOmu2009-11-24T12:14:48Z2009-12-06T21:06:28Z
<p>I have something like this: </p>
<pre><code>public class Foo {
public String id;
}
</code></pre>
<p>and</p>
<pre><code>Vector<Foo> foos;
</code></pre>
<p>I need to get an object from the collection by id.</p>
<p>In C# I would do like this: <code>foos.Where(o => o.id = 7)</code></p>
<p>What's the best way to do that in Java ?</p>
http://stackoverflow.com/questions/1742057/connection-and-collection-interfaces-in-java1Connection and Collection Interfaces in Java Bhupi2009-11-16T12:59:47Z2009-12-05T15:42:00Z
<p>Which class implements all the <code>Connection</code> Interfaces which are in <code>javax.microedition.io</code> package and how?</p>
<p>And in the same way which class implements the some of <code>Collection</code> interfaces like <code>Iterator</code> interface.
I saw a code: - </p>
<pre><code>Iterator it;
ArrayList list = new ArrayList();
it = list.iterator();
</code></pre>
<p>The <code>iterator()</code> return type is "<code>Iterator</code>" which is an interface. </p>
<p>Please tell me what this code is doing is it returning an object of type <code>Iterator</code>? but as far as I know, interface can't be initialized.</p>
http://stackoverflow.com/questions/1817300/convert-list-of-derived-class-objects-to-list-of-base-class-objects1Convert List<> of derived class objects to List<> of base class objectsasdi2009-11-30T00:31:21Z2009-12-05T01:50:43Z
<p>when we can inherit from base class / interface, why can't we declare a <code>List<></code>
using same classes / interface</p>
<pre><code> interface A
{ }
class B : A
{ }
class C : B
{ }
class Test
{
static void Main(string[] args)
{
A a = new C(); // OK
List<A> listOfA = new List<C>(); // compiler Error
}
}
</code></pre>
<p>Is there a way around,
Thanks</p>
http://stackoverflow.com/questions/1840649/converting-this-method-from-ilist-to-iqueryable0Converting this method from IList to IQueryablemrblah2009-12-03T15:30:11Z2009-12-04T12:23:09Z
<p>Is it possible to convert:</p>
<p>public IList Get()
{
return Session.CreateCriteria(typeof(T)).List();
}</p>
<p>to return IQueryable?</p>
<p>What is the difference between IList and IQueryable?</p>
http://stackoverflow.com/questions/1356401/generic-tree-implementation-in-java5Generic tree implementation in JavaIvan2009-08-31T08:19:06Z2009-12-04T10:22:39Z
<p>Is anyone aware of a generic tree (nodes may have multiple children) implementation for Java? It should come from a well trusted source and must be fully tested. </p>
<p><em>It just doesn't seem right implementing it myself. Almost reminds me of my university years when we were supposed to write all our collections ourselves.</em></p>
<p>EDIT: Found <a href="https://jsfcompounds.dev.java.net/treeutils/site/apidocs/com/truchsess/util/package-summary.html" rel="nofollow">this project</a> on java.net, might be worth looking into.</p>
http://stackoverflow.com/questions/1839668/clearest-way-to-combine-two-lists-into-a-map-java3Clearest way to combine two lists into a map (Java)?13ren2009-12-03T12:46:01Z2009-12-04T06:04:13Z
<p>It would be nice to use <code>for (String item: list)</code>, but it will only iterate through one list, and you'd need an explicit iterator for the other list. Or, you could use an explicit iterator for both.</p>
<p>Here's an example of the problem, and a solution using an indexed <code>for</code> loop instead:</p>
<pre><code>import java.util.*;
public class ListsToMap {
static public void main(String[] args) {
List<String> names = Arrays.asList("apple,orange,pear".split(","));
List<String> things = Arrays.asList("123,456,789".split(","));
Map<String,String> map = new LinkedHashMap<String,String>(); // ordered
for (int i=0; i<names.size(); i++) {
map.put(names.get(i), things.get(i)); // is there a clearer way?
}
System.out.println(map);
}
}
</code></pre>
<p>Output:</p>
<pre><code>{apple=123, orange=456, pear=789}
</code></pre>
<p>Is there a clearer way? Maybe in the collections API somewhere?</p>
http://stackoverflow.com/questions/1840775/ienumerable-versus-ilist0IEnumerable versus IList? [closed]mrblah2009-12-03T15:46:58Z2009-12-03T15:58:28Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br>
<a href="http://stackoverflow.com/questions/764748/whats-the-difference-between-ienumerable-and-array-ilist-and-list">What’s the difference between IEnumerable and Array, IList and List?</a> </p>
</blockquote>
<p>what is the difference between an IEnumerable and a IList?</p>
http://stackoverflow.com/questions/1833659/render-partial-with-a-manipulated-collection0render :partial with a manipulated :collectiondoctororange2009-12-02T15:32:45Z2009-12-02T15:42:02Z
<p>Hi.</p>
<p>Say I have a collection of @dogs, and I want to render part of the collection in one place and the rest in another. It's easy to spit them all out together:</p>
<pre><code>render :partial => 'dogs/summary', :collection => @dogs, :as => :dog
</code></pre>
<p>But is it possible to manipulate (refine) your collection in-line, or is it better practice to make those definitions in your controller and do something like:</p>
<pre><code>%h2 Male Dogs:
render :partial => 'dogs/summary', :collection => @male_dogs, :as => :dog
%h2 Female Dogs:
render :partial => 'dogs/summary', :collection => @female_dogs, :as => :dog
</code></pre>
<p>Thanks.</p>
http://stackoverflow.com/questions/1820017/update-hashtable-by-another-hashtable0update hashtable by another hashtable ?shahjapan2009-11-30T14:02:22Z2009-12-02T10:32:54Z
<p>How can I update the values of one hashtable by another hashtable,</p>
<p>if second hashtable contains new keys then they must be added to 1st else should update the value of 1st hashtable.</p>