Tagged Questions
0
votes
0answers
23 views
Converting a runtime Class to Constructor Code, how does the VS designer do it - Can this be improved?
I'm attempting to reverse convert an object to a constructor Code-wise similar to how the Designer does it in VS2010.
Example: Font Object Properties
Name:Microsoft Sans Serif
Size:9.75
Unit:Point
...
3
votes
1answer
38 views
Does Class.getDeclaredConstructor return only public constructors?
Going over the documentation for this method here: getDeclaredConstructor()
I could not see any reference of it returning only public constructors.
My problem is that I have the following piece of ...
-1
votes
3answers
76 views
Is getConstructor() really call the constructor?
public MyClass {
public HashMap<String, String> fu;
public MyClass() {
fu = new HashMap<>();
}
public void myMalloc() {
fu = new HashMap<>();
}
}
Class<?> cl = ...
1
vote
5answers
112 views
Create Instance using base constructor
For reasons out of the scope of the question, I'm needing to dynamically create an instance of a child class that inherits from a base class, calling a constructor that doesn't exist with an argument ...
4
votes
2answers
56 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
2answers
90 views
Constructor class thread safety in Java reflection
Using Java reflection, one can instantiate an object of a class, even via a private constructor, e.g. for
public class MyClass
{
private MyClass(Object p1, String p2)
{
// Constructor ...
1
vote
2answers
97 views
Constructor Parameters Via Java Reflection
I am using Reflection in Java. Can I please have some help to get the constructor parameter names and values?
Here is my code:
public String getConstructors(Class aClass)
{
StringBuilder ...
0
votes
1answer
55 views
Invoke constructor with unknown parameters
I've got set of classes: TestClass1, TestClass2 and TestClass3. All those classes inherits from class MainTestClass. Classes TestClass1, TestClass2 and TestClass3 has different constructors. For ...
1
vote
4answers
87 views
Why do type.getConstructor take a type array as inparameter?
I am currently trying to learn reflection and have seen some examples where GetConstructor is used, i guess that it is one of the basic functions i need to understand, to be able to start work with ...
-1
votes
1answer
163 views
Java invoke a class constructor of a superclass from a subclass [closed]
I'm trying to invoke a parameterized constructor of a inherited class with reflection.
But the constructor isn't implemented in the subclasses, only in the super class.
class Parent{
...
2
votes
2answers
309 views
Java Reflections error: Wrong number of arguments
So I'm trying to invoke a classes constructor at runtime. I have the following code snippet:
String[] argArray = {...};
...
Class<?> tempClass = Class.forName(...);
Constructor c = ...
0
votes
2answers
80 views
Non-default constructor for runtime determined type [duplicate]
Possible Duplicate:
Activator.CreateInstance - How to create instances of classes that have parameterized constructors
I was wondering how to create an object of a type determined at ...
1
vote
3answers
196 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 = ...
4
votes
2answers
463 views
How to get constructor argument names using Scala-Macros
Is there a way to get parameter names of a given constructor using scala-macros?
Thanks
0
votes
1answer
314 views
Using Linq , Reflection , lambda expressions to systematically add SqlParameters into SqlParameterCollection
public class SomeClass
{
public SqlParameterCollection SPPC;
public SomeClass(someType somePrameter)
{
....... SqlParameters assignmet with someParameter goes here .......
...
0
votes
1answer
179 views
How do I create new instance with reflections in java
I have a quick question. How do I create a new instance with passing the parameters to the constructor? Since the GraphicObject can be any of the classes that extend it, I need to know somehow which ...
3
votes
3answers
191 views
C# GetConstructor() not returning parent constructors
I'm trying to find a constructor with a specific signature. This constructor does not exist in current type, but it does in its parent. To illustrate:
public class Base
{
public Base()
{
...
0
votes
2answers
150 views
Using reflection to create object with parameters in constructor
I can not understand the following code:
Constructor<T>[] constructors = (Constructor<T>[]) clazz.getConstructors();
for(int i = 0; i < constructors.length; i++){
...
0
votes
1answer
48 views
call the get_ method of the object
I have
foreach ($constructor_param_names as $reflectionParameter ){
$constructor_params[] = $reflectionParameter -> getName();
$property = $reflectionParameter -> ...
2
votes
2answers
90 views
get the constructor's arguments from the class of object [closed]
Am trying to get the constructor's arguments from the class of $object:
$reflectionClass = new \ReflectionClass($object);
$constructor = $reflectionClass->getConstructor();
$constructor_params = ...
1
vote
3answers
127 views
Lazy- and want all my public members instantiated in constructor
I have a C# class that has dozens of members that are all of the same type, and I always want them to be new'd and not null when the class is instantiated. So in my class field declarations I write:
...
2
votes
1answer
170 views
Calling a constructor through reflection in scala 2.10
What's the best practice for calling a constructor of a class in scala 2.10 (M4+) ?
0
votes
2answers
63 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, ...
1
vote
2answers
304 views
How to access Annotation defined on case class field at Runtime
I've the following java Annotation defined
@Target({ElementType.METHOD, ElementType.PARAMETER, ElementType.CONSTRUCTOR, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
public ...
2
votes
2answers
493 views
Java | Get constructor reflectively
How I can get constructor reflectively, if its param is Object ... objects.
My constructor:
public MyClass ( Object ... objects )
{
if ( ! ( objects == null ) )
{
if ( ...
0
votes
1answer
116 views
Java Reflection constructors orders
Does the order of class constructs return different results in reflection?
I have a problem using reflection. Here is an example:
public class A{
public A()
{
do something here
}
...
2
votes
2answers
159 views
testing whether a function is virtual or is a constructor
I was reading Never Call Virtual Functions during Construction or Destruction by Scott Meyer about basic C++ usage.
I was wondering if g++ has some compiler flags to warn about this bad coding that ...
1
vote
2answers
180 views
Invoking Constructor using reflection produces NoSuchMethodException
Given class Award :
public class Award {
/*
*
*/
// fields of the class
Award()
{
// some initializations
}
I'm trying to invoke this constructor from ...
2
votes
1answer
1k views
Create new object using reflection?
Given class Value :
public class Value {
private int xVal1;
private int xVal2;
private double pVal;
// constructor of the Value class
public Value(int _xVal1 ,int _xVal2 , ...
1
vote
2answers
121 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 : ...
0
votes
2answers
230 views
Dynamically instanciating class using reflection in java fails
I have this piece of code
List<Class<? extends SubApplication>> appClasses = new ArrayList<Class<? extends SubApplication>>();
List<SubApplication> subApps = new ...
5
votes
4answers
209 views
Check whether a constructor calls another constructor
During reflection, is it possible in C# to check whether one constructor calls another?
class Test
{
public Test() : this( false ) { }
public Test( bool inner ) { }
}
I would like to ...
2
votes
1answer
579 views
Get Constructor (Or Methods) Parameter Annotation Using Reflection
How do I obtain the annotation from a parameter within the constructor arguments. I have tried...
Class<?>[] params = constructor.getParameterTypes();
if(params.length > 0) {
...
0
votes
1answer
230 views
Java shallow copy super class instance for sub class instance
I want to pass an instance of a super class to a constructor of a sub class. My first idea was to swap the instance of the super class in the sub class similar to javascripts prototypes, but I was ...
0
votes
2answers
118 views
Create constructor for generic class using reflection
I want to create an class using reflection for an generic class. can someone tell me how to create it?
I have
public class SomeClass<T>
{
....
}
I need to create a class for SomeClass ...
6
votes
4answers
2k views
What is the difference between getDeclaredConstructors and getConstructors in the Class API?
Hi guys : I notice that in the Java Reflection API there is are two different methods for invoking constructores : the getDeclaredConstructors/getConstructors method. Although the java docs are ...
3
votes
1answer
477 views
Parameterless constructor for serialisation in combination with constructor who has default parameter, why does it work?
I have written some code that works great, but I don't understand why it works. I want to serialize a class, with let's say an integer. So here is the code of the class.
[Serializable]
public class ...
3
votes
2answers
995 views
C# Expressions call constructor with a parameter and set its value
i am trying to call an parameterized constructor from an expression instead of using the default ctor. this is the code that gets the constructor parameter(s):
ConstructorInfo ci = ...
3
votes
1answer
233 views
Akka - Creating an actor using reflection
I need to create an actor whose exact type is only read at runtime from a configuration file. The constructor for that actor is non trivial, i.e. it requires some parameters which are defined in the ...
0
votes
2answers
410 views
javascript inheritance, reflection and prototype chain walking?
i'm trying to figure out how much i can use of the javascript language itself and how much i would have to implement myself when it comes to object reflection. here's the intended result
// property ...
3
votes
5answers
601 views
C#, Converting string variable to class variable
I have function as below .
public static object getClassInstance(string key, object constructorParameter)
{
// body here
}
Key variable will have my class name . I need to return the new ...
3
votes
2answers
225 views
Can't find constructor on type; works in Watch
This is the code I use:
Type type = /* retrieved Type */
object arg = /* something that evaluates to null */
MyClass obj = (MyClass)Activator.CreateInstance(type, arg);
I get a crash, that given ...
0
votes
0answers
145 views
AS3 Untyped constructor args bug/workaround problem
Here's a topic that has been covered many places but with one remaining question to it.
When using reflection (describeType) to list the constructor arguments of a class, as you may know, there is a ...
0
votes
1answer
318 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.
0
votes
3answers
160 views
Dynamically hooking up a class having different possible constructors
Let's say I have two classes that look like this:
public class ByteFilter
{
private Func <int, byte[]> readBytes;
private Action<byte[]> writeBytes;
public ByteFilter(Func ...
0
votes
1answer
566 views
Create an instance of an inherited class from abstract base class constructor
Using reflection, is it possible to create an instance of a type that inherits from an abstract base class using the abstract base class' constructor? That is, without the inheriting class having a ...
2
votes
2answers
566 views
Is it possible to call the default-constructor instead of the zero-argument constructor?
I have a util class that is supposed to call a method on a given Class object using reflection.
Right now it creates a new instances using .newInstance() and then calls the method I want to test.
...
5
votes
4answers
4k views
Java: accessing private constructor with type parameters
This is a followup to this question about java private constructors.
Suppose I have the following class:
class Foo<T>
{
private T arg;
private Foo(T t) {
// private!
...
4
votes
3answers
1k views
How to create an instance for a given Type? [duplicate]
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
6answers
3k views
How to get default constructor when parameters are optional
I'm using Type.GetConstructor(Type.EmptyTypes) to get the default constructor for a class. It works if the class has a default constructor with no parameters (class A). But it doesn't work if a class ...
