active questions tagged collections - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T22:15:32Z http://stackoverflow.com/feeds/tag/collections http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1882895/how-can-i-create-a-java-list-using-the-member-variables-of-an-existing-list-with 1 How can I create a java list using the member variables of an existing list, without using a for loop? batthink 2009-12-10T18:07:12Z 2009-12-10T19:36:05Z <p>I have a java list</p> <pre><code>List&lt;myclass&gt; 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&lt;Integer&gt; goodList = new ArrayList&lt;Integer&gt;(); for(int i = 0;i++; i&lt;= 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-a 4 If you aren't supposed to return collections to callers, how should you return a collection of data to a caller? Erik 2009-12-10T14:52:15Z 2009-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&lt;string, string&gt;</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&lt;KeyValuePair&lt;TKey, TValue&gt;&gt;</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-li 0 ASP.NET MVC: How to maintain TextBox State when your ViewModel is a Collection/List/IEnumerable Jared 2009-12-10T01:19:29Z 2009-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>&lt;% using (Html.BeginForm()) { %&gt; &lt;% int index = 0; foreach (var person in Model) { %&gt; &lt;fieldset&gt; &lt;%= Html.Hidden("persons.index", index.ToString())%&gt; &lt;div&gt;Name: &lt;%= Html.TextBox("persons[" + index.ToString() + "].Name")%&gt;&lt;/div&gt; &lt;div&gt;Email: &lt;%= Html.TextBox("persons[" + index.ToString() + "].Email")%&gt;&lt;/div&gt; &lt;/fieldset&gt; &lt;% index++; } %&gt; &lt;p&gt;&lt;input type="submit" name="btnNext" value="Next &gt;&gt;" /&gt;&lt;/p&gt; &lt;% } %&gt; </code></pre> <p>And here is my controller:</p> <pre><code>public class PersonListController : Controller { public IEnumerable&lt;Person&gt; persons; protected override void OnActionExecuting(ActionExecutingContext filterContext) { persons = (Session["persons"] ?? TempData["persons"] ?? new List&lt;Person&gt;()) as List&lt;Person&gt;; // 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&lt;Person&gt; { 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-java 10 Most efficient way to increment a Map value in Java gregory 2008-09-17T09:10:11Z 2009-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-hashmap 2 Why not allow an external interface to override hashCode/equals for a HashMap? volley 2008-10-17T23:06:24Z 2009-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&lt;T&gt; { int alternativeHashCode(T t); boolean alternativeEquals(T t1, T t2); } class HasharatorMap&lt;K, V&gt; { HasharatorMap(Hasharator&lt;? super K&gt; hasharator) { ... } } class HasharatorSet&lt;T&gt; { HasharatorSet(Hasharator&lt;? super T&gt; 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-table 6 Is there a Java Collection (or similar) that behaves like an auto-id SQL table? Hanno Fietz 2009-03-17T14:26:30Z 2009-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-collection 7 Genericized commons collection Don 2008-11-17T16:48:55Z 2009-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-3 1 Creating a "true" HashMap implementation with Object Equality in ActionScript 3 JonnyReeves 2009-12-09T00:04:47Z 2009-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-array 2 How do I convert a Groovy String array to a Java String Array? Kevin Williams 2009-02-20T18:06:59Z 2009-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-0 1 Collection as Collection of base type c# 2.0 kpollock 2009-12-08T12:41:12Z 2009-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-histo 36 Is the Scala 2.8 collections library a case of "the longest suicide note in history" ? oxbow_lakes 2009-11-12T14:49:57Z 2009-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>&gt; 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 =&gt; 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-resources 0 RoR: partials with resources Patrick Oscity 2009-12-07T22:43:16Z 2009-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>&lt;div class="tutorial"&gt; &lt;h3&gt;&lt;%= link_to tutorial.title, tutorial %&gt;&lt;/h3&gt; &lt;span class="person"&gt;&lt;%=h tutorial.tutor %&gt;&lt;/span&gt; &lt;span class="time"&gt;&lt;%=h german_time(tutorial.starts_at) %&gt;&lt;/span&gt; &lt;span class="location"&gt;&lt;%=h tutorial.location %&gt;&lt;/span&gt; &lt;div class="description"&gt;&lt;%=h tutorial.description %&gt;&lt;/div&gt; &lt;% if admin? %&gt; &lt;%= link_to 'Edit', edit_tutorial_path(tutorial) %&gt; | &lt;%= link_to 'Delete', tutorial, :confirm =&gt; 'Are you sure?', :method =&gt; :delete %&gt; &lt;% end %&gt; &lt;/div&gt; &lt;!-- end .tutorium --&gt; </code></pre> <p>app/views/tutorials/index.html.erb:</p> <pre><code>&lt;h2&gt;Tutorials&lt;/h2&gt; &lt;% render :partial =&gt; @tutorials %&gt; &lt;% if admin? %&gt; &lt;%= link_to 'New Tutorial', new_tutorial_path %&gt; &lt;% end %&gt; </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-keyedcollection 2 Is there a general concrete implementation of a KeyedCollection? CodeSavvyGeek 2009-12-03T20:23:40Z 2009-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&lt;TKey, TItem&gt; : KeyedCollection&lt;TKey, TItem&gt; { private Converter&lt;TItem, TKey&gt; getKeyForItem = null; public GenericKeyedCollection(Converter&lt;TItem, TKey&gt; 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-c 0 Silverlight 3 DataGrid Grouping - Detecting Group Header Click or Header Expand/Collapse Paul 2009-12-07T21:40:24Z 2009-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-c 3 Less defined generics in c#? Wam 2009-12-03T15:44:26Z 2009-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&lt;TValue&gt; { enter code here } List&lt;TimeSerie&lt;?&gt;&gt; blah; </code></pre> <p>Here is what I have to do so far :</p> <pre><code>class TimeSerie {} class TypedTimeSerie&lt;TValue&gt; : TimeSerie {} List&lt;TimeSerie&gt; 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-items 13 .NET: How to efficiently check for uniqueness in a List<string> of 50,000 items? Cheeso 2009-12-07T14:29:16Z 2009-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&lt;> with a Dictionary&lt;> , 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-interop 0 What are alternatives to generic collections for COM Interop? Mike Henry 2008-11-06T17:43:38Z 2009-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&lt;Department&gt;</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&lt;Department&gt;</code>, implement an <code>IList</code>, <code>IList&lt;Department&gt;</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&lt;Department&gt; GetDepartments() { // return a list of Departments from the database } } </code></pre> <h2>Example ASP code:</h2> <pre><code>&lt;% Function PrintDepartments(departments) Dim department For Each department In departments Response.Write(department.Code &amp; ": " &amp; department.Name &amp; "&lt;br /&gt;") Next End Function Dim myLibrary, departments Set myLibrary = Server.CreateObject("MyAssembly.MyLibrary") Set departments = myLibrary.GetDepartments() %&gt; &lt;h1&gt;Departments&lt;/h1&gt; &lt;% Call PrintDepartments(departments) %&gt; &lt;h1&gt;The third department&lt;/h1&gt; &lt;%= departments(2).Name %&gt; </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-hibernate 1 Splitting one DB association into several collections in Hibernate. tkopec 2009-12-07T08:14:28Z 2009-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&lt;CashTransferCurrencyAmount&gt; requiredCurrencyAmountSet = new HashSet&lt;CashTransferAmountCurrency&gt;(); @OneToMany(mappedBy="cashTransfer") private Set&lt;CashTransferCurrencyAmount&gt; actualCurrencyAmountSet = new HashSet&lt;CashTransferAmountCurrency&gt;(); } </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-notifypropertychanging 0 Lists NotifyPropertyChanging Carlo 2009-05-26T21:27:08Z 2009-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&lt;SomeObject&gt; BindingList { get; set; } public ObjectThatHoldsTheList() { this.BindingList = new BindingList&lt;SomeObject&gt;(); } // 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) &gt; 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-wit 4 Hibernate/Ehcache: evicting collections from 2nd level cache not synchronized with other DB reads Kirill 2009-10-01T19:22:35Z 2009-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-collections 1 C++/CLI generics, use T in array<> and other collections Guillermo Prandi 2009-12-06T23:04:03Z 2009-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&lt;typename T&gt; where T : Record, gcnew() public ref class Factory { public: // ....functions.... protected: array&lt;T^&gt; ^ 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-filtering 1 Java Collection filtering Omu 2009-11-24T12:14:48Z 2009-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&lt;Foo&gt; 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 =&gt; 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-java 1 Connection and Collection Interfaces in Java Bhupi 2009-11-16T12:59:47Z 2009-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-objects 1 Convert List<> of derived class objects to List<> of base class objects asdi 2009-11-30T00:31:21Z 2009-12-05T01:50:43Z <p>when we can inherit from base class / interface, why can't we declare a <code>List&lt;&gt;</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&lt;A&gt; listOfA = new List&lt;C&gt;(); // compiler Error } } </code></pre> <p>Is there a way around, Thanks</p> http://stackoverflow.com/questions/1840649/converting-this-method-from-ilist-to-iqueryable 0 Converting this method from IList to IQueryable mrblah 2009-12-03T15:30:11Z 2009-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-java 5 Generic tree implementation in Java Ivan 2009-08-31T08:19:06Z 2009-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-java 3 Clearest way to combine two lists into a map (Java)? 13ren 2009-12-03T12:46:01Z 2009-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&lt;String&gt; names = Arrays.asList("apple,orange,pear".split(",")); List&lt;String&gt; things = Arrays.asList("123,456,789".split(",")); Map&lt;String,String&gt; map = new LinkedHashMap&lt;String,String&gt;(); // ordered for (int i=0; i&lt;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-ilist 0 IEnumerable versus IList? [closed] mrblah 2009-12-03T15:46:58Z 2009-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&rsquo;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-collection 0 render :partial with a manipulated :collection doctororange 2009-12-02T15:32:45Z 2009-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 =&gt; 'dogs/summary', :collection =&gt; @dogs, :as =&gt; :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 =&gt; 'dogs/summary', :collection =&gt; @male_dogs, :as =&gt; :dog %h2 Female Dogs: render :partial =&gt; 'dogs/summary', :collection =&gt; @female_dogs, :as =&gt; :dog </code></pre> <p>Thanks.</p> http://stackoverflow.com/questions/1820017/update-hashtable-by-another-hashtable 0 update hashtable by another hashtable ? shahjapan 2009-11-30T14:02:22Z 2009-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>