1
vote
6answers
55 views
Overriding with subclass as a parameter and generics: where is it in Java Lang Spec?
I've run into Java code similar to the following:
public interface BaseArg {
}
public class DerivedArg implements BaseArg {
}
public abstract class Base <A extends BaseArg> {
A arg;
void …
2
votes
2answers
33 views
C# exposing class to COM - Generic Collections
We have a small framework written in C# .Net 2.0 that we want to expose to COM.
Problem is, we have some generic classes that would be exposed as the following:
interface IOurClass
{
…
2
votes
2answers
95 views
Is it safe to cast generics in Delphi?
I need to implement a function which returns a TDictionary, without specifying the exact types. The returned value could be a TDictionary<string,Integer>, TDictionary<string,string> or …
2
votes
2answers
57 views
C#: Typing variables holding instances of constrained generic classes
I am just starting to get to grips with generics and am (ab)using them to refactor a fairly complex section of my code (I've only been using c# for a little while but am fairly experienced in other …
1
vote
1answer
41 views
Generic Database Linq
Given a function as below, i can take a single table from my database and write a lambda using the Where extension method and pretty much build all the other cases using a simple wrapper method and …
0
votes
3answers
75 views
Restricting generic type fails in a particular situation
I like to separate my definitions from my implementations. I have an interface Entity:
public interface Entity<E> where E : Entity<E>
{
EntityId EntityId { get; }
bool ReadOnly { …
1
vote
2answers
35 views
C++/CLI generics, use T in array<> and other collections
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 …
4
votes
4answers
136 views
Default value for generic data structure
I would like to write a SparseVector[T] class where T can be a double, an int or a boolean.
The class will not be backed by an array (because I want a sparse data structure) but I have seen that when …
0
votes
1answer
69 views
C#: how to compare object’s type with a generics type, irrelevant to generic argument?
Best way to illustrate my question is with this example code:
class Item {}
class Container< T > {}
class Program
{
static void DoSomething( object something )
{
if( …
2
votes
4answers
72 views
Why can’t I use System.ValueType as a generics constraint?
Why can't I use a constraint of
where T : System.ValueType?
Why does Microsoft not allow this type
from being a constraint?
Example:
Why can't I do the following?
// Defined in a .Net class
…
0
votes
5answers
95 views
Making a generic parameterized type of anything
So I am trying to make a parameterized type that will work for anytype in Java this includes anything that is an object, and also the primitives types. How would i go about doing this?
Ok, suppose I …
3
votes
5answers
137 views
Less defined generics in c#?
Is there a way to use a collection of a generic class, without supplying the underlying type ?
Let's explain :
Here is what I'd like to have :
class TimeSerie<TValue> {
enter code here
}
…
3
votes
2answers
68 views
A method that executes any time a class property is accessed (get or set) ?
C# - .net 3.5
I have a family of classes that inherit from the same base class.
I want a method in the base class to be invoked any time a property in a derrived class is accessed (get or set). …
5
votes
1answer
80 views
Generic repository - IRepository<T> or IRepository
I have seen two different approaches for creating generic repositories. What are differences between those two approaches (pros and cons) ?
Please diregard difference in the methods because I am …
3
votes
3answers
99 views
How do I get the Java compiler to tell me what type it infers?
When I have a Java generic function like:
<T> T choose(T a, T b) { }
and I call it from somewhere, how can I find out what type is inferred for T?
Edit: Type inference happens at compile …
