active questions tagged generics - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T18:15:35Zhttp://stackoverflow.com/feeds/tag/genericshttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1899906/genericity-vs-type-safety-using-void-in-c6Genericity vs type-safety? Using void* in CJoe2009-12-14T09:33:57Z2009-12-19T05:56:09Z
<p>Coming from OO (C#, Java, Scala) I value very highly the principles of both code reuse and type-safety. Type arguments in the above languages do the job and enable generic data structures which are both type-safe and don't 'waste' code.</p>
<p>As I get stuck into C, I'm aware that I have to make a compromise and I'd like it to be the right one. Either my data structures have a <code>void *</code> in each node / element and I lose type safety or I have to re-write my structures and code for each type I want to use them with.</p>
<p>The complexity of the code is an obvious factor: iterating through an array or a linked-list is trivial and adding a <code>*next</code> to a struct is no extra effort; in these cases it makes sense not to try and re-use structures and code. But for more complicated structures the answer isn't so obvious.</p>
<p>There's also modularity and testability: separating out the type and its operations from the code that uses the structure makes testing it easier. The inverse is also true: testing the iteration of some code over a structure whilst it's trying to do other things gets messy.</p>
<p>So what's your advice? <code>void *</code> and reuse or type-safety and duplicated code? Are there any general principles? Am I trying to force OO onto procedural when it won't fit? </p>
<p><strong>Edit</strong>: Please don't recommend C++, my question is about C!</p>
http://stackoverflow.com/questions/1931810/how-do-i-write-a-generic-save-method-that-handles-single-objects-and-collection1How do I write a generic Save() method that handles single objects and collections?Daniel T.2009-12-19T03:04:52Z2009-12-19T03:34:28Z
<p>I have two generic save methods in a repository class:</p>
<pre><code>public void Save<T>(T entity)
{
_session.Save(entity);
}
public void Save<T>(IEnumerable<T> entities)
{
foreach (var item in entities)
{
_session.Save(item);
}
}
</code></pre>
<p>However, when I use <code>Save(collection)</code> (which infers the type automatically), it recognizes it as a <code>T</code> rather than <code>IEnumerable<T></code> and tries to save it using the first method.</p>
<p>How do I write this save method(s) so that it can handle either case, without me having to explicitly provide the type?</p>
http://stackoverflow.com/questions/1930432/how-do-you-create-a-generic-method-in-java-where-one-of-the-parameterized-types-m0How do you create a generic method in Java where one of the parameterized types must implement Iterable?Geo2009-12-18T20:13:26Z2009-12-18T21:19:35Z
<p>Here's the method I'm trying to write ( doesn't compile now, because <code>what</code> is not seen as an Iterable ):</p>
<pre><code>public <T,V> ArrayList<V> mySelect(T what,ITest<V> x) {
ArrayList<V> results = new ArrayList<V>();
for(V value : what) {
if(x.accept(value)) {
results.add(value);
}
}
return results;
}
</code></pre>
<p>The <code>T</code> type implements <code>Iterable</code> , and returns <code>V</code> objects when using <code>foreach</code>. The thing is, I don't know how to write that. Can you help?</p>
http://stackoverflow.com/questions/1927789/why-should-i-care-that-java-doesnt-have-reified-generics20Why should I care that Java doesn't have reified generics?oxbow_lakes2009-12-18T11:54:01Z2009-12-18T20:51:52Z
<p>This came up as a question I asked in an interview recently as something the candidate wished to see added to the Java language. It's commonly-identified as a pain that Java doesn't have <a href="http://gafter.blogspot.com/2006/11/reified-generics-for-java.html" rel="nofollow">reified generics</a> but, when pushed, the candidate couldn't actually tell me the sort of things that he could have achieved were they there.</p>
<p>Obviously because raw types are allowable in Java (and unsafe checks), it is possible to subvert generics and end up with a <code>List<Integer></code> that (for example) actually contains <code>String</code>s. This clearly could be rendered impossible were type information reified; <em>but there must be more than this</em>!</p>
<p>Could people post examples of things that <strong>they would really want to do</strong>, were reified generics available? I mean, obviously you could get the type of a <code>List</code> at runtime - but what would you do with it?</p>
<pre><code>public <T> void foo(List<T> l) {
if (l.getGenericType() == Integer.class) {
//yeah baby! err, what now?
</code></pre>
<p><strong>EDIT</strong>: A quick update to this as the answers seem mainly to be concerned about the need to pass in a <code>Class</code> as a parameter (for example <code>EnumSet.noneOf(TimeUnit.class)</code>). I was looking more for something along the lines of <em>where this just isn't possible</em>. For example:</p>
<pre><code>List<?> l1 = api.gimmeAList();
List<?> l2 = api.gimmeAnotherList();
if (l1.getGenericType().isAssignableFrom(l2.getGenericType())) {
l1.addAll(l2); //why on earth would I be doing this anyway?
</code></pre>
http://stackoverflow.com/questions/1899865/how-to-pass-a-generic-object-to-an-aspx-page2How to pass a generic object to an Aspx pageJauco2009-12-14T09:22:37Z2009-12-18T18:49:27Z
<p>I am working on an ASP.Net MVC website and I am stuck on a getting my C# code using generics to play nice with my views.</p>
<p>I have a Controller that passes a Model to a View (so far so good). The Model is of type <code>IDescribedEnumerable<T></code> with some constraints on <code>T</code>, among those is the constraint that <code>T</code> inherits from an interface (<code>IDescribedModel</code>). </p>
<p>I can easily write a View that accepts an <code>IDescribedEnumerable<Country></code> and that will work as long as <code>T</code> is in fact the type <code>Country</code>. </p>
<p>However, I'd also like to write a default view that accepts an <code>IDescribedEnumerable</code> of <code><<whatever>></code> and that will render it. This should be entirely possible. I don't always need to know the specific type of the Model. Often just knowing that it's an <code>IDescribedModel</code> is enough.</p>
<p>As long as I stay in C# there is no problem. When I don't care about the specific type I just declare methods and objects as accepting a <code><T></code>. When I do care I declare them as accepting <code>Country</code>.</p>
<p>But:<br>
(1) If I want to render a View I have to pick an type. I can't just say <code>Inherits="System.Web.Mvc.ViewUserControl<IDescribedEnumerable<T>>"</code> I have to specify an existing type between the <code><></code>. (even if I were to inherit from <code>ViewUserControl</code> I'd have to cast it to an <code>IDescribedEnumerable<<something>></code>.
(2) Ideally I'd say that Model is <code>IDescribedEnumerable<IDescribedModel></code> in the default View and <code>IDescribedEnumerable<Country></code> in the specific implementation. However, then my Controller needs to know whether he's going to render to the default View or the specific view. It is not possible to simply cast an object that is <code>IDescribedEnumerable<Country></code> to <code>IDescribedEnumerable<IDescribedModel></code>. (IIRC it is possible in C# 4, but I'm using 3.5)</p>
<p>So what should I do? All options I can think of are very sub-optimal (I'm not looking forward to removing the generics and just casting objects around, nor to copy pasting the default view 65 times and keeping the copies synchoronized, nor going reflection gallore and creating an object based on a known <code>Type</code> object)</p>
http://stackoverflow.com/questions/1917844/how-to-cast-listobject-to-listmyclass3How to cast List<Object> to List<MyClass>unknown (yahoo)2009-12-16T21:23:10Z2009-12-18T18:18:23Z
<p>Hello these,</p>
<p>This does not compile, any suggestion appreciated.</p>
<pre><code> ...
List<Object> list = getList();
return (List<Customer>) list;
</code></pre>
<p>Compiler says: cannot cast <code>List<Object></code> to <code>List<Customer></code></p>
http://stackoverflow.com/questions/565564/c-alternative-to-generictype-null5C#: Alternative to GenericType == nullSvish2009-02-19T14:33:07Z2009-12-18T17:15:30Z
<p>I need to check a generic object for null, or default(T). But I have a problem... Currently I have done it like this:</p>
<pre><code>if (typeof(T).IsValueType)
{
if(default(T).Equals(thing))
// Do something
else
// Do something else
}
else
{
if(thing == null)
// Do something
else
// Do something else
}
</code></pre>
<p>But then I end up repeating myself... which I don't like. The problem is the following:</p>
<pre><code>thing == null;
</code></pre>
<p>Here ReSharper warns about Possible compare of value type with 'null'.</p>
<pre><code>thing == default(T);
</code></pre>
<p>Here I get compiler error: Cannot apply operator '==' to operands of type 'T' and 'T'.</p>
<pre><code>thing.Equals(null|default(T));
</code></pre>
<p><code>thing</code> can obviously be null (that's why I have to check!), so will cause NullReferenceException.</p>
<pre><code>null|default(T).Equals(thing);
</code></pre>
<p>null and default(T) is very often null as well...</p>
<p>Is there a clean way to do this??</p>
http://stackoverflow.com/questions/354136/default-value-for-generics3Default value for genericsMicah2008-12-09T20:32:41Z2009-12-18T16:14:08Z
<p>How do I create the default for a generic in VB? in C# I can call:</p>
<pre><code>T variable = default(T);
</code></pre>
<ol>
<li>How do I do this in VB?</li>
<li>If this just returns null (C#) or nothing (vb) then what happens to value types?</li>
<li>Is there a way to specify for a custom type what the default value is? For instance what if I want the default value to be the equivalent to calling a parameterless constructor on my class.</li>
</ol>
http://stackoverflow.com/questions/1924728/why-isnt-collections-binarysearch-working-with-this-comparable0Why isn't Collections.binarySearch() working with this comparable?Roly2009-12-17T21:31:22Z2009-12-18T15:45:19Z
<p>I have this <code>Player</code> class which implements the <code>Comparable</code> interface. Then I have an <code>ArrayList</code> of <code>Player</code>s. I'm trying to use <code>binarySearch()</code> on the list of <code>Player</code>s to find one <code>Player</code>, but Java is giving me a "<code>cannot find symbol: method binarySearch(java.util.ArrayList< Player>,Player)</code>".</p>
<p>This the Player class:</p>
<pre><code>class Player implements Comparable {
private String username;
private String password;
Statistics stats;
//Constructor, creates a new Player with a supplied username
Player(String name) {
username = name;
password = "";
stats = new Statistics();
}
//Accessor method to return the username as a String
String getName() {
return username;
}
String getPassword() {
return password;
}
void setPassword(String newPass) {
password = newPass;
}
//Method to change the username
void setName(String newName) {
username = newName;
}
public int compareTo(Object o) {
return username.compareTo(((Player)o).username);
}
}
</code></pre>
<p>Weird thing, when I try Collections.sort() on this same list, it works.</p>
http://stackoverflow.com/questions/1504451/c-how-to-implement-a-multi-index-dictionary1(c#) how to implement a multi-index dictionary?MatteoSp2009-10-01T14:56:33Z2009-12-18T14:18:18Z
<p>Basically I want something like Dictionary<Tkey1, TKey2, TValue>, but not (as I've seen here in other question) with the keys in AND, but in OR. To better explain: I want to be able to find an element in the dictionary providing just one of the keys, not both.</p>
<p>I also think we should consider thread-safety and the ability to easily scale to a Dictionary<Tkey1, TKey2, TKeyN, TValue> solution...</p>
http://stackoverflow.com/questions/1922923/wpf-windows-organization-techniques0WPF windows organization techniquesVytas9992009-12-17T16:27:06Z2009-12-18T08:04:37Z
<p>Hello, Im developing some wpf app. Basically i have two types of windows: search windows and insert/edit windows. When i developed win forms apps, i used a trick, called MdiParent. In that way i had ability to put my caled search type windows in a "stack". In orher words if i called 5 different search windows from meniu, they apeared in a component like tab control, one after other.By clicking on that tabs, i could see search results of clicked tab window. The trick as i said was MdiParent technique, like:</p>
<pre><code> private ProductDiscount frmProductDiscount = null;
private void ProductDiscountToolStripMenuItem_Click(object sender, EventArgs e)
{
if ((frmProductDiscount == null) || (!frmProductDiscount.Visible))
{
frmProductDiscount = new ProductDiscount();
frmProductDiscount.MdiParent = this;
frmProductDiscount.Show();
}
else
{
frmProductDiscount.Activate();
}
}
</code></pre>
<p>So does anyone can me suggest a good way to implement such a window organization technique in WPF and put some links or examples..?That would be a big help for me.</p>
http://stackoverflow.com/questions/280629/how-to-pass-an-event-from-a-child-object-in-a-generic-list-to-the-parent0how to pass an event from a child object in a generic list to the parent?marc.d2008-11-11T11:09:49Z2009-12-18T00:45:42Z
<p>hi,</p>
<p>here is my example code:</p>
<pre><code>Public Class Parent
Private _TestProperty As String
Private WithEvents _Child As IList(Of Child)
Public Property Test() As String
Get
Return _TestProperty
End Get
Set(ByVal value As String)
_TestProperty = value
End Set
End Property
Public Property Child() As IList(Of Child)
Get
Return _Child
End Get
Set(ByVal value As IList(Of Child))
_Child = value
End Set
End Property
Private Sub eventHandler Handles _Child
End Class
Public Class Child
Private _TestProperty As String
Public Event PropertyChanged As EventHandler
Friend Sub Notify()
RaiseEvent PropertyChanged(Me, New EventArgs())
End Sub
Public Property Test() As String
Get
Return _TestProperty
End Get
Set(ByVal value As String)
_TestProperty = value
Notify()
End Set
End Property
End Class
</code></pre>
<p>how can i handle the event raised by one of the child`s in the parent object?
using withevents on the _child object gives me only the events from the List(of T) object.</p>
<p>tia</p>
http://stackoverflow.com/questions/1924733/list-of-dynamicly-created-structure1List<> of dynamicly created structureMax Yaffe2009-12-17T21:32:29Z2009-12-17T21:53:46Z
<p>In C# I want to create a list based on a dynamic value type, e.g.:</p>
<pre><code>void Function1() {
TypeBuilder tb = .... // tb is a value type
...
Type myType = tb.CreateType();
List<myType> myTable = new List<myType>();
}
void Function2(Type myType)
{
List<myType> myTable = new List<myType>();
}
</code></pre>
<p>This won't comple because List<> wants a staticly defined type name. Is there any way to work around this?</p>
http://stackoverflow.com/questions/1922831/generic-collection-of-generic-classes3Generic collection of generic classes?Adam V2009-12-17T16:12:08Z2009-12-17T16:22:17Z
<p>I have a class that I fill from the database:</p>
<pre><code>public class Option<T>
{
public T Value { get; set; }
public T DefaultValue { get; set; }
public List<T> AvailableValues { get; set; }
}
</code></pre>
<p>I want to have a collection of them:</p>
<pre><code>List<Option<T>> list = new List<Option<T>>();
Option<bool> TestBool = new Option<bool>();
TestBool.Value = true;
TestBool.DefaultValue = false;
list.Add(TestBool);
Option<int> TestInt = new Option<int>();
TestInt.Value = 1;
TestInt.DefaultValue = 0;
list.Add(TestInt);
</code></pre>
<p>It doesn't seem to work. Ideas?</p>
http://stackoverflow.com/questions/1922002/creating-an-ilistt-of-itemu2Creating an IList<T> of Item<U>?David Williams2009-12-17T14:03:00Z2009-12-17T14:13:22Z
<p>So I have an object, lets say <code>Item<U></code>. I want to create a(n) <code>(I)List<T></code> containing a collection of these items. The problem that I am running into is that the collection of <code>Item<U></code> can have any number of different types for U in them.</p>
<p>What I can not figure out is the signature to use for the <code>IList</code>. I tryed <code>IList<Item<T>></code>, but because I do not (in the class where the <code>IList</code> is to be used) have a defination of <code>T</code> (which as I said varys anyhow) I can not use this signature. What is the best way to approach this requirement?</p>
http://stackoverflow.com/questions/1921237/problem-using-generic-map-with-wildcard0Problem using generic map with wildcardmmoossen2009-12-17T11:52:21Z2009-12-17T13:50:20Z
<p>i have a method that returns a map defined as:</p>
<pre><code>public Map<String, ?> getData();
</code></pre>
<p>the actual implementation of this method is not clear to me, but:</p>
<p>when i try to do:</p>
<pre><code>obj.getData().put("key","value")
</code></pre>
<p>I get following compile time error message:</p>
<blockquote>
<p>The method put(String, capture#9-of ?)
in the type Map
is not applicable for the arguments
(String, String)</p>
</blockquote>
<p>what is the problem? is not <code>String</code> of type anything?</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1920987/how-do-i-iterate-a-generic-reflected-method2How do I iterate a generic reflected method?tigermain2009-12-17T11:02:19Z2009-12-17T11:42:35Z
<p>In my CMS I have a load of modules which allow me to do some clever item listing stuff. I am trying to use them to pull out a list of their child objects via reflection, but am getting stuck with the level of generics involved.</p>
<p>I have got as far as this method:</p>
<pre><code>var myList = moduleObj.GetType().GetMethod("ChildItems").Invoke(moduleObj, new object[] { });
</code></pre>
<p>which returns a List. Each modulespecificobject is bound it an IItemListable interface which has the methods in it I am trying to access.</p>
<p>I am unsure how I can cast or iterate the myList object as a set of IItemListable objects access the methods required.</p>
<p>Thanks</p>
<p>A few of the classes:</p>
<pre><code>public interface IItemListable
{
IQueryable GetQueryableList();
string GetIDAsString();
IItemListable GetItemFromUrl(string url, List<IItemListable> additionalItems);
bool IsNewItem();
IItemListable CreateItem<T>(ItemListerControl<T> parentList) where T : class, IItemListable;
IItemListable LoadItem(string id);
IItemListable SaveItem();
RssToolkit.Rss.RssItem ToRssItem();
void DeleteItem();
string ItemUrl();
}
public interface IItemListModule<T> where T: IItemListable
{
List<T> ChildItems();
}
public class ArticlesModule : ItemListModuleBase<Article>, IItemListModule<Article>
{
#region IItemListModule<Article> Members
public new List<Article> ChildItems()
{
return base.ChildItems().Cast<Article>().Where(a => a.IsLive).ToList();
}
#endregion
}
</code></pre>
http://stackoverflow.com/questions/1920305/c-typed-t-usercontrol-in-design-mode-gives-error2C# typed <T> usercontrol in design mode gives errorMysticEarth2009-12-17T08:48:44Z2009-12-17T09:54:43Z
<p>I've got a custom class, which derives from <code>UserControl</code>.
The code:</p>
<pre><code>public partial class Gallery<T> : UserControl where T : class, IElement, new()
</code></pre>
<p>This classworks like it's supposed to work. But, when I try to enter design mode of the form which contains these <code>Gallery</code> classes, it gives me errors:</p>
<blockquote>
<ul>
<li><p>Could not find type 'PresentrBuilder.Forms.Gallery'.
Please make sure that the assembly
that contains this type is referenced.
If this type is a part of your
development project, make sure that
the project has been successfully
built. </p></li>
<li><p>The variable 'pictureGallery' is either undeclared or was never
assigned.</p></li>
</ul>
</blockquote>
<p>Note: (<code>pictureGallery</code> actually is a <code>Gallery<PictureElement></code>).</p>
<p>How can solve this? This way, I can't work in design mode which makes creating my userinterface quite hard.</p>
http://stackoverflow.com/questions/1920217/list-super-b-lsb-new-arraylista-logical-error-in-java2List<? super B> lsb = new ArrayList<A>(); Logical error in java?wzawirski2009-12-17T08:21:20Z2009-12-17T08:44:27Z
<p>We have:</p>
<pre><code>class A{}
class B extends A{}
class C extends B{}
class D extends C{}
</code></pre>
<p>we can define Lists like:</p>
<pre><code>List<? super B> lsb1 = new ArrayList<Object>();
//List<? super B> lsb2 = new ArrayList<Integer>();//Integer, we expect this
List<? super B> lsb3 = new ArrayList<A>();
List<? super B> lsb4 = new ArrayList<B>();
//List<? super B> lsb5 = new ArrayList<C>();//not compile
//List<? super B> lsb6 = new ArrayList<D>();//not compile
</code></pre>
<p>now we crate some objects:</p>
<pre><code>Object o = new Object();
Integer i = new Integer(3);
A a = new A();
B b = new B();
C c = new C();
D d = new D();
</code></pre>
<p>I will try to add this objects to List:</p>
<pre><code>List<? super B> lsb = new ArrayList<A>();
lsb.add(o);//not compile
lsb.add(i);//not compile
lsb.add(a);//not compile
lsb.add(b);
lsb.add(c);
lsb.add(d);
</code></pre>
<p>Question:</p>
<p>Why when I define reference for <code>List<? super B></code> can I use <code>new ArrayList<>();</code> which can have elements type of <strong>B, A, Object</strong> (I expected this), but when I add elements to this list can I add only objects with type <strong>B, C, D</strong>?</p>
http://stackoverflow.com/questions/1839734/why-does-generic-class-signature-requires-specifying-new-if-type-t-needs-instan6Why does Generic class signature requires specifying new() if type T needs instantiation ?this.__curious_geek2009-12-03T13:03:55Z2009-12-17T06:37:05Z
<p>The question itself is self-explanatory.</p>
<p>I'm writing a Generic class as following.</p>
<pre><code>public class Foo<T> :
where T : Bar, new()
{
public void MethodInFoo()
{
T _t = new T();
}
}
</code></pre>
<p>As you can see the object(_t) of type T is instantiated at run-time. To support instantiation of generic type T, language forces me to put new() in the class signature. I'd agree to this if Bar is an abstract class but why does it need to be so if Bar standard non-abstract class with public parameter-less constructor.</p>
<p>compiler prompts following message if new() is not found.</p>
<p><strong>Cannot create an instance of the variable type 'T' because it does not have the new() constraint</strong></p>
http://stackoverflow.com/questions/1919645/generic-stored-procedure-in-oracle0generic stored procedure in oracleunknown (google)2009-12-17T05:24:36Z2009-12-17T05:47:53Z
<p>I want to write a PLSQL stored procedure that accepts a table name as argument. This table is source table. Now inside my procedure i want to manipulate the fields of that table.
EX: I want to insert the records of this source table into another target table whose name is <code>XYZ_<source table name></code>. The column names for source and target tables are the same. But there may be some extra fields in target table. How do i do it? The order of column names is not same.</p>
http://stackoverflow.com/questions/552805/c-reflection-generics0C# Reflection & Genericsbleevo2009-02-16T09:56:30Z2009-12-16T21:47:41Z
<p>Hi,</p>
<p>Got a complex reflection question. Given the code below how would you implement the pseudo so that given an instance of Parent it will enumerate over the types Properties find child objects with a Property of the same type as Parent and set the reference to the provided p. Hope that makes sense. Also I need this to work with Generic lists as well. See below for sample object graph. After running this every Person in the child Pet instances will be the Parent instance.</p>
<pre><code> public class ChildSetter<Parent>
{
public void Set(Parent p)
{
//pseudo
//var parentName = p.GetType().Name;
//foreach (var property in p.Properties)
//{
// if (!property.IsList)
// {
// if (property.ContainsProperty(parentName))
// property.Properties[parentName] = p;
// }
// else
// {
// if (property.ListType.ContainsProperty(parentName))
// {
// foreach (var item in property)
// {
// item.Properties[parentName] = p;
// }
// }
// }
//}
}
}
public class Person
{
public Pet Pet { get; set; }
public IList<Pet> Pets { get; set; }
}
public class Pet
{
public Person Person { get; set; }
}
</code></pre>
<p>A non generic example of this code is below:</p>
<pre><code> public void Set(Person p)
{
p.Pet.Person = p;
foreach (var pet in p.Pets)
{
pet.Person = p;
}
}
</code></pre>
http://stackoverflow.com/questions/1913526/instantiating-a-class-assignable-to-collection0Instantiating a class assignable to Collectiondaniel2009-12-16T09:48:28Z2009-12-16T13:44:05Z
<p>I want to check if a given Class is assignable to a java.util.Collection, and if so create a new instance of it. </p>
<p>I tried the following:</p>
<pre><code>Class<?> clazz = ... // I got this from somewhere
if (!clazz.isInterface() && java.util.Collection.class.isAssignableFrom(clazz)) {
java.util.Collection<?> collection = clazz.newInstance();
}
</code></pre>
<p>Predictably it doesn't work, since it cannot convert to an unknown type to a java.util.Collection.
I thought of adding a cast but that seems like a hack.</p>
<p>I also thought of doing this:</p>
<pre><code>Class<? extends java.util.Collection<?>> collectionClass = Class<? extends java.util.Collection<?>> clazz;
java.util.Collection<?> collection = clazz.newInstance();
</code></pre>
<p>Now there's no need for the cast at newInstance but I still have to cast the Class object. </p>
<p>What's the right way to do this? Thanks.</p>
<p>(for clarity I removed the try/catch around newInstance in case I'm trying to instantiate an abstract class)</p>
http://stackoverflow.com/questions/1914259/java-generic-wildcards0java generic wildcardsJeroen2009-12-16T12:02:43Z2009-12-16T12:19:02Z
<p>Currently I'm working on a service interface which retrieves domain objects based on a primary key. However I get the feeling I'm not efficiently using generics.</p>
<p>Base domain objects look as follows:</p>
<pre><code>public interface DomainObject<PK extends Serializable> extends Serializable {
PK getID();
}
</code></pre>
<p>My service interface looks as follows:</p>
<pre><code>public interface LoadService<T extends DomainObject<PK>, PK extends Serializable> {
T load(PK ID);
}
</code></pre>
<p>This works, however I have to specify the PK type in the service generics, even though the PK type is already known inside T. Is there any way I can get around having to define my PK again in the LoadService interface? Something like:</p>
<pre><code>LoadService<T extends DomainObject<? extends Serializable as PK> { ... }
</code></pre>
<p>Help will be greatly appreciated!</p>
http://stackoverflow.com/questions/1901749/designing-a-wrapper-around-a-wcf-web-service-for-using-generic-crud-methods-a-g2Designing a wrapper around a WCF web service for using generic CRUD methods - a good solution?Rookian2009-12-14T15:59:29Z2009-12-16T12:16:27Z
<p>As you all know creating a web service with generic methods is not possible. You have to design the message. </p>
<p>But I had the idea of creating a wrapper around WCF using Reflection.</p>
<pre><code>public class WcfRepository<T> : IWcfRepository<T> where T : class
{
public IList<T> GetList()
{
Type wcfService = typeof (Service1Client);
string entityName = typeof(T).Name;
string methodName = String.Format("Get{0}List", entityName);
object instance = Activator.CreateInstance(wcfService, true);
var result = (IList<T>) wcfService.InvokeMember(methodName,
BindingFlags.InvokeMethod | BindingFlags.Default, null, instance, null);
return result;
}
public T Save(T entity)
{
throw new NotImplementedException();
}
public void Update(T entity)
{
throw new NotImplementedException();
}
public void Delete(int id)
{
throw new NotImplementedException();
}
}
</code></pre>
<p>You would use the wrapper like this:</p>
<pre><code>var result = new WcfRepository<Employee>().GetList();
</code></pre>
<p>Here is the cumbersome way without the wrapper:</p>
<pre><code>var customers = myWcfService.GetCustomerList();
var teams = myWcfService.GetTeamList();
var products = myWcfService.GetProductList();
</code></pre>
<p>So what do you think about my wrapper?
What advantages and disadvantages you can see?</p>
http://stackoverflow.com/questions/1914121/does-net-typecast-when-an-object-is-used-in-collection-using-generics1Does .Net typecast when an object is used in collection using generics?ravisha2009-12-16T11:34:42Z2009-12-16T11:46:53Z
<p>Does .net CLR typecast the objects to the ones mentioned in the collection declaration?
If i declare a </p>
<pre><code>List<string> lststrs= new List<string>();
lststrs.add("ssdfsf");
</code></pre>
<p>does .net typecasts this object while adding and retriving?????</p>
http://stackoverflow.com/questions/1913934/create-intance-of-any-c-class-by-generic-way1Create intance of any C# class by generic waytobias2009-12-16T11:04:33Z2009-12-16T11:38:33Z
<p>i want to create instance of any class by generic way.
is that possible?i know ,this is madly but this is only a question waits the its answer.</p>
<p>i tried this but doesnt work.</p>
<pre><code>public class blabla {
public void bla();
}
public class Foo<T>
{
Dictionary<string, Func<object>> factory;
public Foo()
{
factory = new Dictionary<string, Func<object>>();
}
public WrapMe(string key)
{
factory.Add(key, () => new T());
}
}
Foo<blabla> foo = new Foo<blabla>();
foo.Wrapme("myBlabla");
var instance = foo.factory["myBlabla"];
instance.Bla();
</code></pre>
http://stackoverflow.com/questions/1913759/generic-stored-procedures-in-oracle1generic stored procedures in oracleunknown (google)2009-12-16T10:34:35Z2009-12-16T11:14:12Z
<p>i want to write a generic stored procedure in oracle .For example i want to take table name as input and then do maipulations on it.
I want to learn some sample generic codes and the basica of writing generic stored procedures in oracle.
Can any one provie code snippets/ links to websites or other material for this? </p>
http://stackoverflow.com/questions/1912548/how-to-group-generic-classes2How to group generic classes?CaptnCraig2009-12-16T05:40:28Z2009-12-16T06:24:39Z
<p>I am working on a generic game engine for simple board games and such. I am defining interfaces that I will require each game to implement I have classes like IGame, IGameState, IBoardEvaluator, and IMove.</p>
<p>I have methods like IGame.PerformMove(IMove move), that I would like to restrict. If I am playing tic-tac-toe I would like to enforce that I can only use the concrete classes TTTGame, TTTState, TTTMove, etc... </p>
<p>I can think of several ways to do this, but none of them sound fun. Maybe all classes could have a single generic parameter, and I could make sure it matches.</p>
<pre><code>so IGame<T> has method PerformMove(IMove<T> move)
</code></pre>
<p>If that works out, I wouldn't know what class to use for T. Maybe it doesn't matter.</p>
<p>My other idea is put a bunch of generic parameters on IGame and give it all of the classes I need. So I would create <code>class TTTGame<TTTMove,TTTState,TTTMove....></code></p>
<p>That isn't pretty either. Is there a common pattern to do this? </p>
http://stackoverflow.com/questions/1912333/exception-on-creating-a-edmx-db-schema-using-entity-framework-4-using-contextbuil1Exception on creating a EDMX/DB-Schema using Entity Framework 4 using ContextBuilder with a generic class.Nick Josevski2009-12-16T04:41:41Z2009-12-16T05:02:34Z
<p>I'm using the <strong>Microsoft.Data.Entity.CTP</strong> (in the Entity Framework CTP) under the .NET 4 framework to create the EDMX metadata from my C# classes to create a database schema.</p>
<p>I setup a simple model as such:</p>
<pre><code>public class AModelContainer : ObjectContext
{
public IObjectSet<RegularClass> RegularClasses {
get { return CreateObjectSet<RegularClass>(); }
}
}
</code></pre>
<p>I follow the simple pattern of defining a new ContextBuilder based on my model.</p>
<pre><code>var builder = new ContextBuilder<AModelContainer>();
using(var context = builder.Create(new SqlConnection(connString)))
{
context.RegularClasses.AddObject(new RegularClass());
context.SaveChanges();
}
</code></pre>
<p><em>This works fine</em>. <strong>Until</strong> I try to do something a little more complex...</p>
<p>I extend my model with a generic class</p>
<pre><code>public class AModelContainer : ObjectContext
{
public IObjectSet<SpecialClass<string>> SpecialClasses {
get { return CreateObjectSet<SpecialClass<string>>(); }
}
}
</code></pre>
<p>Now on the save I get an <strong>exception</strong>:</p>
<blockquote>
<p>Mapping and metadata information could not be found for EntityType 'Prototype.SpecialClass`1[[System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089]]'.</p>
</blockquote>
<p>On this line in the <em>AModelContainer</em>:</p>
<pre><code>return CreateObjectSet<SpecialClass<string>>();
</code></pre>
<p>The default constructor of my generic 'SpecialClass' does nothing at the moment, should it? </p>
<pre><code>public class SpecialClass<T>
{
public SpecialClass()
{ }
}
</code></pre>
<p>Or is this an issue with the <em>ContextBuilder</em> not knowing what to do exactly, is there a way to use builder.ComplexType(), or other method to guide it?</p>
<p>Or the CTP can't deal with this scenario yet...</p>
<p>That "<em>`1</em>" after my class name also doesn't sit well with me in the exception...</p>