13
votes
3answers
1k views
Getting method parameter names in python
Given the python function:
def aMethod(arg1, arg2):
pass
How can I extract the number and names of the arguments. Ie. given that I have a reference to func, I want the func.[something] to …
10
votes
8answers
2k views
Is there a function in Python to print all the current properties and values of an object?
So what I'm looking for here is something like PHP's print_r function. This is so I can debug my scripts by seeing what's the state of the object in question.
7
votes
3answers
430 views
C# “is” operator - is that reflection?
A colleague asked me an interesting question today - is the C# keyword/operator "is" considered reflection?
object tmp = "a string";
if(tmp is String)
{
}
How is this operator implemented behind …
7
votes
4answers
1k views
How can I determine if a Perl function exists at runtime?
I'm working on a test framework in Perl. As part of the tests, I may need to add precondition or postcondition checks for any given test, but not necessarily for all of them. What I've got so far is …
7
votes
5answers
493 views
Getting the name of the current method in c++
Is there a (standardized) way to get the name of the current method using c++?
Using GNU GCC you can do this by using the macro __FUNCTION__ and __PRETTY_FUNCTION__ (surrounded by 2 underscores), …
7
votes
4answers
2k views
Can you list the keyword arguments a Python function receives?
I have a dict, which I need to pass key/values as keyword arguments.. For example..
d_args = {'kw1': 'value1', 'kw2': 'value2'}
example(**d_args)
This works fine, but if there are values in the …
6
votes
2answers
129 views
Where does pythons pydoc help function get its content from.
I have a lot of callable objects and they all have the __doc__ string correctly filled out, but running help on them produces the help for the their class instead of help based on __doc__.
What I …
5
votes
5answers
199 views
How can I determine the type of a generic field in Java?
I have been trying to determine the type of a field in a class. I've seen all the introspection methods but haven't quite figured out how to do it. This is going to be used to generate xml/json from a …
5
votes
2answers
195 views
Python logging using a decorator
This is the first example we meet when we face with decorators. But I'm not able to realize what exactly I would like.
A simple decorator named LOG. It should work like this:
@LOG
def f(a, b=2, *c, …
4
votes
2answers
216 views
How do I list all instance variables of a class in Objective-C?
If I have a class, how can I list all its instance variable names?
eg:
@interface MyClass : NSObject {
int myInt;
NSString* myString;
NSMutableArray* myArray;
}
I would like to get …
4
votes
5answers
221 views
Find functions explicitly defined in a module (python)
Ok I know you can use the dir() method to list everything in a module, but is there any way to see only the functions that are defined in that module? For example, assume my module looks like this:
…
4
votes
3answers
515 views
Retrieving the inherited attribute names/values using Java Reflection
I've a Java object 'ChildObj' which is extended from 'ParentObj'. Now, if it is possible to retrieve all the attribute names and values of ChildObj, including the inherited attributes too, using Java …
4
votes
5answers
288 views
How do I loop over all the methods of a class in Perl?
How do you loop over all the methods of a class in Perl? Are there any good online references to Perl introspection or reflection?
4
votes
2answers
883 views
Python Reflection and Type Conversion
In Python, functions like str(), int(), float(), etc. are generally used to perform type conversions. However, these require you to know at development time what type you want to convert to. A …
4
votes
3answers
2k views
Getting the class name of an instance in Python
Hi,
How do I find out a name of class that created an instance of an object in Python if the function I am doing this from is the base class of which the class of the instance has been derived?
Was …
