Tagged Questions
0
votes
6answers
92 views
I want to pass a parameter into the constructor of a list of certain classes
I'd like to somehow pass a parameter into a list when I'm instantiating a new list of certain classes.
More specifically, I'd like to do something like the following:
...
3
votes
2answers
45 views
Checking at runtime if a class has a specific constructor that is using generics
Hello all :) I'm trying to chose the right constructor in a class. Here is the code:
Constructor[] constructors = targetClass.getConstructors();
Constructor goodConstructor = null;
for (Constructor ...
1
vote
1answer
75 views
how to call inherited constructor of TObjectDictionary in Delphi
I created the following class, after reading about the significant performance improvement of TDictionary over TStringList:
TAnsiStringList = class(TObjectDictionary<AnsiString,TObject>)
...
4
votes
3answers
62 views
Can a generic type be inferred from the generic type of a constructor parameter?
I was wonder if it is possible for the generic type of one class to be defined by the generic type of another object being passed as a parameter?
What I'm working on is a thread safe iterator so ...
0
votes
3answers
65 views
Call base constructor with different arguments than subclass constructor
I'm sure this is a duplicate, but the keywords for my search are too common... I get a lot of hits, for things I'm not looking for. I'm coming from C#, and Java generics seem to be a bit behind the ...
1
vote
3answers
155 views
How do I pass a generic type parameter to a method called from a constructor?
Here is the constructor:
public PartyRoleRelationship(PartyRole firstRole, PartyRole secondRole)
{
if (firstRole == secondRole)
throw new ...
1
vote
2answers
53 views
Dilemma in calling constructor of generic class
I have this generic singleton that looks like this:
public class Cache<T>
{
private Dictionary<Guid, T> cachedBlocks;
// Constructors and stuff, to mention this is a singleton
...
1
vote
1answer
56 views
Method parameter must be obj of certain class that implements certain interface
How to declare a method with parameter which must be same time a certain class which implements certain interface without declaring a special class for this?
Assume i have declared class ImageX and ...
2
votes
3answers
79 views
Why I cannot call a parameterized constructor with generics if I specify the base class
If have the following class:
class A
{
public A(int number)
{
}
}
Then why I cannot have a generic class like this one:
class B<ParameterClass> where ParameterClass : A
{
...
1
vote
1answer
95 views
Why TreeMap constructor undefined for comparator type with same template value parameter type?
The value type of my map is a List<Pair<Integer, String>>
I want to sort it by the left side of first pair in the list. But there is an error said:
The constructor
...
1
vote
3answers
140 views
Get Generic Type in Constructor in java
Is there a way to find generic type in constructor?
public class geneticarg {
public static void main(String[] args) {
a<String> a1 = new a<String>("a");
a<String> a2 = ...
-2
votes
3answers
150 views
C++ generic data structures - data field assignment-operator vs copy c'tor [closed]
Does using an assignment operator instead of copy c'tor in generic structures, considered as bad coding? Or it doesn't matter because perhaps it's widely assumed that if there is a special c'tor for a ...
0
votes
0answers
102 views
C# Compare Constructor Signature
How do you compare a constructor method?
Let say i have a class which has 3 constructor.
public class MyClass
{
private string myName;
private string mySurname;
public MyName ...
0
votes
1answer
154 views
'Set = new HashSet' or 'HashSet = new Hashset'? [duplicate]
Possible Duplicate:
List versus ArrayList variable type?
I'm intialising a HashSet like so in my program:
Set<String> namesFilter = new HashSet<String>();
Is this functionally ...
1
vote
3answers
129 views
Why can't we use a constructor with parameter in derived classes
Why is this not possible?
I get the following compiler-error when instantiating "DerivedClass" with a constructor-parameter:
'GenericParameterizedConstructor.DerivedClass' does not contain a ...
4
votes
2answers
99 views
Generic Constructors and Inheritence
I have a generic class with a class constraint on it.
public class MyContainer<T> where T : MyBaseRow
MyBaseRow is an abstract class which I also want to contain a member of some flavour of ...
6
votes
4answers
130 views
scala class constructors and abstract types
I want to use an abstract type rather than a type parameter.
In my generic classes constructor, I want to have a parameter of the generic type, but the code doesn't compile:
class SomeOtherClass(val ...
0
votes
1answer
116 views
Java type error with generics in Constructor
I have a (probably simple) question regarding genrics in Java. I have the following class:
public class ValueCollection<Y> implements Collection<Y>
{
private Set<Entry<?, ...
0
votes
2answers
60 views
determine whether a generic type has a standard constructor
Let T be a generic type. I would like to do something like this:
T x = default(T);
if (T has standard constructor)
x = new T();
Of course, one could restrict T to types having such a constructor, ...
2
votes
2answers
85 views
Factories, constructors and generics in C#
Let's say I have a factory ressembling this:
public static class BusinessObjectFactory
{
public static T Create<T>(int objectId) where T : BusinessObject, new()
{
var dataSource ...
3
votes
3answers
157 views
Why is parent's constructor getting called?
I have an asbtract class Example. Another generic class UsesExample uses it as a constraint, with a new() constraint. Later, I create a child to Example class, ExampleChild, and use it with generic ...
0
votes
2answers
83 views
Constructor argument gets lost when passed to super constructor
In my GWT app I have a datatype (intended for building and tracking hierarchies of like objects) that extends a superclass, which in turn extends another, abstract superclass. There is a generic ...
1
vote
2answers
186 views
How to call constructor for leaves of a tree algebraic data type in Scala?
I'm creating some basic abstract data types and algorithms to brush up on my CS fundamentals, and learning Scala along the way. I'm running into trouble with my BinarySearchTree data type, which is ...
1
vote
2answers
119 views
C# Reflection: How to use an “object” as a “type-parameter”
I have this domain:
public class GenClass<T> { }
public class Type1 { }
public class Type2 { }
public class GenType1 : GenClass<Type1> { }
public class GenType2 : ...
1
vote
5answers
179 views
Java Generics (simple case, clear enigma for infering)
I have this class, just for the purpose of learning:
public class MyClass{ //Looking for a solution without making my class also generic <Type>
//Private Arraylist var to hold the value ...
2
votes
1answer
192 views
Using generics in an Expression<Func<MyType, TOrderBy>> in a Constructor
This is probably a relatively simple oversight, but I can't work out if I'm actually allowed to do this, or what might be a reasonable alternative (using in VS2010, C# .Net 4.0). I would strongly ...
1
vote
4answers
607 views
How do I instantiate an instance of a generic method parameter in Java?
Consider the following code:
// ...
public class BaseClass
{
public BaseClass (int theParam)
{
// ...whatever...
}
}
public class DerivedType
{
// ...Content does not ...
3
votes
2answers
313 views
Delphi XE: Can I call virtual constructors with parameters from a classtype-constrained generic type without resigning to hacks?
I'm trying to build a generic ancestor for composite controls. The initial idea looked something like this:
type
TCompositeControl<TControl1: TControl; TControl2: TControl> = ...
2
votes
3answers
140 views
How to make a generic class a property in another instance class?
I'm totally new to C# generic so I have the following problem. I have 2 classes. One instance based and another generic class.
I want to have a property in the 1st class of the type of 2nd generic ...
7
votes
5answers
238 views
What is a use case for a generic constructor?
Consider the following constructor for the class Foo (which for the sake of clarity is not a generic class):
public <T> Foo(T obj) { }
This is valid syntax for constructors, just like with ...
2
votes
4answers
732 views
Inherited Generics Constructor C#
Hi I'm trying to make a generic treenode. Here is the abstract generic class
public abstract class TreeNode<T>
{
protected List<TreeNode<T>> _childNodes = new ...
5
votes
3answers
3k views
java generic constructors
I currently have the following code that retrieves data from the database and then create a User. This code is used in many of my classe to create other objects such as News, Commentsetc...
It uses ...
2
votes
1answer
423 views
Generic constructor: T entity = new T();
I have the following winforms classes:
class EntityEditorForm<T>: System.Windows.Forms.Form
where T: ICloneable<T> {}
class ...
4
votes
4answers
110 views
abstracting class instantiation
I have a base abstract class with several classes which extend and override it, however they all have the same constructor. Right now I call each constructor from a switch statement:
case 1: return ...
5
votes
6answers
389 views
Java generics and specialized constructors
(This is probably a duplicate, but I could not find it - feel free to point it out)
Consider the following Java class:
public class A<T0, T1> {
public A(T0 t0, T1 t1) {
...
}
}
...
5
votes
1answer
1k views
No enclosing instance of type MySuperClass<B> is available due to some intermediate constructor
I was trying to use an inner class of the super type, which was using generics. And got that strange error above.
class MySuperClass<B> {
class InnerClass {
}
...
3
votes
2answers
148 views
Calling constructor with different generic type than class is being created with
I have this problem which I hope is a simple solution to. I have the following class (extract) and I'd like to avoid having to make public myImage(myImage<int> image), public ...
0
votes
1answer
522 views
Problem with constructor of a generic class using enumset
I want to develope a class in java. The problem is that the constructor doesn't work
The class is this:
public class EnumSetPlus<E extends Enum<E>> {
//Map
private EnumSet<E> ...
1
vote
3answers
344 views
Why C# don't accept constructor requirements with parameters on generics?
Working with C# Generics you can have a class like this:
class Foo<T> where T:new() {}
Which means that the type T should have a constructor without parameters. It would be nice if we could ...
0
votes
3answers
309 views
Method with type parameter to return array of said type
I am trying to create a generic method in C# that will return an array of the specified type. This is what my method looks like at the moment:
private T[] GetKeys<T>(string key, ...
-1
votes
3answers
110 views
How do I get the value of the used parameters in a constructor (C#)
I've got a question about getting the values from a constructor in a generic way.
namespace myTestNamespace
{
Public Class myTestClass()
{
Public myTestClass(int myInt,bool myBool, ...
3
votes
5answers
211 views
Is is possible to remove generic type parameters from object constructor in Java?
In Java it is tiring to have to write:
Pair<String, String> pair = new Pair<String, String>("one", "two");
It would be nice if the types were inferred for you so you could at least do ...
45
votes
4answers
4k views
What is a higher kinded type in Scala?
You can find the following in the web:
Higher kinded type == type constructor?
class AClass[T]{...} // e.g. class List[T]
some say this is a higher kinded type because it
abstracts over ...
0
votes
1answer
304 views
How can I get the reflect constructor with Generics in Java?
now exists a class below:
class A{
private A(HashMap map){
}
}
how can I get the constructor that the parameters are generics with reflection?
EDIT : Question edited.
2
votes
3answers
354 views
Calling ambiguously overloaded constructor in Java
I just saw this C# question and wondered, if something similar could happen in Java. It can, with
class A<T> {
A(Integer o) {...}
A(T o) {...}
}
the call
new A<Integer>(43);
...
4
votes
3answers
847 views
How to create an instance for a given Type?
With generics you can
var object = default(T);
But when all you have is a Type instance I could only
constructor = type.GetConstructor(Type.EmptyTypes);
var parameters = new object[0];
var obj = ...
3
votes
3answers
242 views
How to use an object of type class from an generic class as a parameter? - generics and reflection combined
I have two classes:
public abstract class MyAbstractSuperClass<A, B> {
public MyAbstractSuperClass(Class<A> a, Class<B> b) {
...
}
...
}
public class ...
0
votes
4answers
738 views
Java: using generic wildcards with subclassing
Say I have a class Foo, a class A and some subclass B of A. Foo accepts A and its sublclasses as the generic type. A and B both require a Foo instance in their constructor. I want A's Foo to be of ...
2
votes
2answers
454 views
How can I define a constructor in an open generic type?
I am trying to create on open generic type that has a constructor to be used by derived types, but I either don't know how to do it or it is not possible -- not sure which.
public struct ...
5
votes
1answer
2k views
C# Struct Generic Constructor
Using this code:
struct Foo<T1>
{
public T1 Item1 { get; private set; }
public Foo(T1 item1)
{
Item1 = item1;
}
}
I encounter this error:
Backing field for ...