Tagged Questions
A capability of some object-oriented programming languages to determine the type of an object at runtime.
92
votes
3answers
29k views
Getting the class name of an instance in Python
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 ...
41
votes
9answers
23k 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.
26
votes
4answers
7k 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 ...
22
votes
4answers
5k 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 ...
19
votes
5answers
9k views
Objective C Introspection/Reflection
Is there a built in method, function, API, commonly accepted way, etc. to dump the contents of an instantiated object in Objective C, specifically in Apple's Cocoa/Cocoa-Touch environment?
I want to ...
14
votes
5answers
2k views
C# how to get the name of the current method from code
I know you can do
this.GetType().FullName
Edit courtesy of @Pasi Savolainen
To get
My.Current.Class
But what can I call to get
My.Current.Class.CurrentMethod
13
votes
2answers
1k 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, ...
13
votes
6answers
3k views
How do you list the currently available objects in the current scope in ruby?
I'm new to ruby and I'm playing around with the irb.
I found that I can list methods of an object using the ".methods" method, and that self.methods sort of gives me what I want (similar to python's ...
12
votes
7answers
810 views
Functional programming languages introspection
I'm sketching a design of something (machine learning of functions) that will preferably want a functional programming language, and also introspection, specifically the ability to examine the ...
12
votes
3answers
8k views
How do I access properties of a javascript object if I don't know the names?
Say you have a javascript object like this:
var data = { Name: 'Property Name', Value: '0' };
You can access the properties by the property name:
var name = data.Name;
var value = data["Value"];
...
11
votes
5answers
187 views
name of the class that contains the method code
I'm trying to find the name of the class that contains method code.
In the example underneath I use self.__class__.__name__, but of course this returns the name of the class of which self is an ...
11
votes
4answers
2k views
Python: List all base classes in a hierarchy
Given a class Foo (whether it is a new-style class or not), how do you generate all the base classes - anywhere in the inheritance hierarchy - it issubclass of?
10
votes
4answers
156 views
Is it common/good practice to test for type values in Python?
Is it common in Python to keep testing for type values when working in a OOP fashion?
class Foo():
def __init__(self,barObject):
self.bar = setBarObject(barObject)
def ...
10
votes
6answers
699 views
How to make Spring accept fluent (non-void) setters?
I have an API which I am turning into an internal DSL. As such, most methods in my PoJos return a reference to this so that I can chain methods together declaratively as such (syntactic sugar).
...
10
votes
3answers
1k views
List all the modules that are part of a python package?
Is there a straightforward way to find all the modules that are part of a python package? I've found this old discussion, which is not really conclusive, but I'd love to have a definite answer before ...
10
votes
3answers
5k views
Get __name__ of calling function's module in Python
Suppose myapp/foo.py contains:
def info(msg):
caller_name = ????
print '[%s] %s' % (caller_name, msg)
And myapp/bar.py contains:
import foo
foo.info('Hello') # => [myapp.foo] Hello
I ...
10
votes
4answers
3k views
How do I list available methods on a given object or package in Perl?
How do I list available methods on a given object or package in Perl?
10
votes
4answers
6k 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 ...
9
votes
7answers
439 views
Introspection to get decorator names on a method?
I am trying to figure out how to get the names of all decorators on a method. I can already get the method name and docstring, but cannot figure out how to get a list of decorators.
9
votes
4answers
1k views
Does Scala have introspection capable of something similar to Python's dir()?
Yes, I know it's considered lazy by the non-Pythonistas. The reason I ask is that documentation is still woefully lacking in many Scala libraries (e.g. Scala-dbc, but that's not all I'm looking at), ...
9
votes
2answers
1k 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 ...
9
votes
3answers
1k 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 ...
9
votes
7answers
5k 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 ...
9
votes
5answers
939 views
Tips on a tool to measure code quality?
I'm looking for a tool that can provide code quality metrics.
For instance it could report
very long functions (spaghetti code)
very complex classes (which could contain do-it-all code)
...
While ...
8
votes
6answers
431 views
Haskell: Function to determine the arity of functions?
Is it possible to write a function arity :: a -> Integer to determine the arity of arbitrary functions, such that
> arity map
2
> arity foldr
3
> arity id
1
> arity "hello"
0
?
8
votes
3answers
166 views
What are the arguments to the types.CodeType() python call?
I'm currently trying to roll my own "marshal" code for python so i can store compiled python code on Google App Engine to serve scripts on a dynamic way. As you all can verify, "marshal" isn't ...
8
votes
2answers
2k views
Python: How to get the caller's method name in the called method?
Python: How to get the caller's method name in the called method?
Assume I have 2 methods:
def method1(self):
...
a = A.method2()
def method2(self):
...
If I don't want to do any ...
8
votes
7answers
247 views
How to refer to a method name from with a method in Python?
Say I have the following class defined with the method foo:
class MyClass:
def foo(self):
print "My name is %s" % __name__
Now when I call foo() I expect/want to see this printed out
...
8
votes
3answers
2k views
get all methods of an objective-c class or instance?
In Objective-C i can test wether a given class or instance responds to certain selectors. But how can query a class or instance for all its methods or properties of a class (e.g. a list of all methods ...
8
votes
11answers
4k views
How do I look inside a Python object?
I'm starting to code in various projects using Python (including Django web development and Panda3D game development). To help me understand whats going on, I would like to basically 'look' inside the ...
8
votes
4answers
5k views
What is the C# equivalent to Java's instanceof and isInstance()?
I know of is and as for instanceof, but what about the reflective isInstance() method?
8
votes
5answers
4k views
Checking for member existence in Python
I regularly want to check if an object has a member or not. An example is the creation of a singleton in a function. For that purpose, you can use hasattr like this:
class Foo(object):
...
7
votes
4answers
215 views
Introspection in Clojure
What is the best way to do introspection in Clojure? Is there something like Python's dir function? I'm particularly interested in finding the methods that are available on java classes that I'm ...
7
votes
3answers
283 views
How do I inspect the methods of a Ruby object?
I am wondering if there is a Ruby method call that shows only the methods defined by the Ruby object it's called from, as opposed to all the methods defined by its ancestor classes, which is what ...
7
votes
3answers
856 views
C++11 reflection library
I'm currently going to write big project in c++11.
I'm searching for some time good c++11/c++ reflection library and I've found several different libraries, but most of them are simply not updated ...
7
votes
4answers
1k views
Print all local variables accessible to the current scope in Lua
I know how to print "all" global variables using the following code
for k,v in pairs(_G) do
print("Global key", k, "value", v)
end
So my question is how to do that for all variables that are ...
7
votes
2answers
460 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 ...
7
votes
3answers
3k 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 ...
7
votes
5answers
1k 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), ...
6
votes
2answers
122 views
Can obj.__dict__ be inspected if the class has a __dict__ variable?
I am interested in whether there is a way to introspect a Python instance infallibly to see its __dict__ despite any obstacles that the programmer might have thrown in the way, because that would help ...
6
votes
3answers
137 views
How do you map a fully qualified class name to its class object in Python?
You can get the fully qualified class name of a Python object like this (see this question):
>>> import Queue
>>> q = Queue.PriorityQueue()
>>> def fullname(o):
return ...
6
votes
1answer
138 views
Python get arguments for partial functions
I am looking to do something similar to what was asked here Getting list of parameters inside python function, but using partial functions. ie. I need to get the possible arguments for a partial ...
6
votes
3answers
309 views
How is introspection useful?
Python noobie here.
OK. I have been programming mainly in PHP, and I am trying to make a switch to python. I am skilled with PHP, and I have never needed to use introspection / introspection like ...
6
votes
2answers
426 views
JavaBeans and introspection - messed up on boolean and indexed properties?
A former colleague of mine started a discussion half an hour ago about javabeans, and why they didn't quite work the way he wants in JSF. The particular case is about boolean properties.
1. For a ...
6
votes
3answers
231 views
getting the class path or name space of a class in python even if it is nested
I'm currently writing a serialization module in Python that can serialize user defined classes. in order to do this I need to get the full name space of the object and write it to a file. I can then ...
6
votes
5answers
594 views
Java object graph visitor library
Do you know a good java object graph visitor library?
I want to visit an object and its sub components and perform some actions when some conditions are matched.
Example usage:
on a huge domain ...
6
votes
3answers
659 views
How can I determine a function's argument count at runtime in Flex 3?
I want to pass an optional data parameter to some callbacks, but only to callbacks that support a single parameter; right now, I have a moderately-sized code base of callbacks that cannot accept a ...
6
votes
5answers
538 views
Get kwargs Inside Function
If I have a python function like so:
def some_func(arg1, arg2, arg3=1, arg4=2):
Is there a way to determine which arguments were passed by keyword from inside the function?
EDIT
For those asking ...
6
votes
1answer
5k views
Java introspection and reflection
Can any one explain the use of Java reflection and introspection? When we need to use both?
6
votes
5answers
594 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:
...