Tagged Questions
The instance-methods tag has no wiki summary.
7
votes
3answers
287 views
overriding bool() for custom class
All I want is for bool(myInstance) to return False (and for myInstance to evaluate to False when in a conditional like if/or/and. I know how to override >, <, =)
I've tried this:
class test:
...
7
votes
3answers
529 views
In Ruby are there any related applications of the syntax: class << self … end
class << self
attr_accessor :n, :totalX, :totalY
end
The syntax above is used for defining class instance variables. But when I think about what syntax implies, it doesn't make any sense to ...
6
votes
4answers
344 views
Static and instance methods in Python
Can I define a Python method to be both static and instance at the same time? Something like:
class C(object):
@staticmethod
def a(self, arg1):
if self:
blah
blah
...
6
votes
5answers
623 views
Static variables in instance methods
Let's say I have this program:
class Foo {
public:
unsigned int bar () {
static unsigned int counter = 0;
return counter++;
}
};
int main ()
{
Foo a;
Foo b;
}
(Of ...
4
votes
4answers
242 views
Can a method be used as either a staticmethod or instance method?
I'd like to be able to do this:
class A(object):
@staticandinstancemethod
def B(self=None, x, y):
print self is None and "static" or "instance"
A.B(1,2)
A().B(1,2)
This seems like ...
4
votes
1answer
155 views
Fluent Interfaces - the number of objects being created
I am in the process of creating some fluent interfaces for some simple validation stuff that I am playing around with. One thing that I have noticed is that I have a lot of different objects being ...
3
votes
1answer
393 views
Rails - Dynamically defining instance methods in a model
I'm not sure if this can even be achieved, but here goes... :)
Lets assume two models, a Page model and a Field model. A Page has_many :fields and the Field model has two attributes: :name, :value
...
3
votes
2answers
596 views
Ruby modules and extend self
In what sort of situation is the code:
module M
extend self
def greet
puts "hello"
end
end
more beneficial to use over say something like:
module M
def self.greet
puts ...
3
votes
2answers
454 views
Refering to javascript instance methods with a pound/hash sign
This question is similar to http://stackoverflow.com/questions/736120/why-are-methods-in-ruby-documentation-preceded-by-a-pound-sign
I understand why in Ruby instance methods are proceeded with a ...
2
votes
2answers
48 views
Can I specify another class's instance-method as a variable for my method?
I'm still relatively new to python, 1-2 years of solo-learning, and am trying to improve my code structure so I'm refactoring some old programs I wrote. In one program, I defined a couple of methods ...
2
votes
2answers
39 views
Should search/get methods that retrieve rows from a database be instance methods or static methods?
Why would I want to make all my search/get functions that retrieve rows from a database, instance methods? If I have a getByID(id) or a findPeople(person attributes) function, that either returns ...
2
votes
2answers
70 views
I know how to set class methods, but how do I set instance methods on the fly?
I asked a previous question on class methods, but I really want to understand how to do this for instance methods as well. Thanks! =)
The code below sets class methods for a given array:
class ...
1
vote
0answers
81 views
Is this the right way to pickle instance methods? If yes, why isn't it in Python 3?
Instance methods can not automatically be pickled in both Python 2 or Python 3.
I need to pickle instance methods with Python 3 and I ported example code of Steven Bethard to Python 3:
import ...
1
vote
3answers
117 views
Class methods and instance methods - when/when not to use them?
I was wondering when and when not to use class methods and instance methods. I need some practical examples. I am really confused. Another question: can't we do exactly the same things with instance ...
1
vote
1answer
139 views
Call static method from instance in PHP, future deprecation?
While I understand the $this variable is not available when a method is called in a static context, to assist in decoupling my application components from one-another I figured it would make sense to ...
1
vote
2answers
114 views
Can a static method always be converted to an instance method?
If we can make sure the instance is the singleton, then static method can be always converted to instance method? Is that right?
1
vote
3answers
143 views
Non-polymorphically Invoke Instance Method in D?
How do you statically invoke a particular definition of an instance method from outside the class of the object, so as to inhibit polymorphism in that particular use? (In other words: I need the ...
1
vote
2answers
217 views
Defining methods on the fly in Ruby / Rails - how to set params?
I am trying to define a set of functions where I can pass in given params.
for example, how do i do the following?
>> get_1_type("xxx")
V4_RELATIONSHIP_TYPES=[1=>2,3=>4]
...
1
vote
2answers
412 views
To static or not to static
I really like to use static methods (especially for helpers classes). But as static methods are not stubbable, eventually they are a bad practice, aren't they? So I have to choose between static ...
1
vote
1answer
134 views
Can a DTO have instance methods returning derived values?
Is it ever acceptable for a DTO to have instance methods which return derived values based on the DTO's data? Or should DTOs be pure data containers with no additional methods (other than ...
1
vote
3answers
952 views
SELF keyword in Objective-C
In a project I'm creating, I have various classes. One of my classes has an instance of NSMutableArray that holds objects of another one of my classes. I thought I had a firm understanding on this ...
0
votes
2answers
28 views
Coin Flip Statistics Program - undefined method
I'm trying to write a coin flip program where I can analyze the percentage of Heads flipped. I've gotten coin flip to work, just not the actually analyzing yet.
The problem is when I created a Coin ...
0
votes
1answer
47 views
Custom TabBar with UIButtons
First: Sorry for my bad English!
I have a class in which I create UIButton. The UIButton I add a UIView. In the ViewController I would like to add these custom tabbar. This works well so far. ...
0
votes
1answer
21 views
What is the right way to initialize an object that invoke an instance method of its mother?
The question is as of the title. Say I have a simple example below:
class Vehicle
attr_accessor :wheels
end
class Car < Vehicle
def initialize
self.wheels = 4
end
end
class Truck < ...
0
votes
3answers
81 views
Calling a method from outside a class in Java
This seems to be a common question on here but for all the ones I read, they seem to deal with different things.
I'm writing a program with a main class that manages an array of objects of a ...
0
votes
5answers
94 views
passing in self data in python
Can you please clarify how it is that self.add(x) below works the same way as self.data.append(x)?
That is, how does self.add(x) know to append to the list because we have not explicitly stated ...
0
votes
2answers
61 views
Explanation of Class Methods and Instance Method
Until now, I would like to know the difference between these 2. I always been using instance methods but have no idea the meaning behind it. Can anyone explain in the simplest way? Thanks.
0
votes
2answers
83 views
Using methods of a class from another in python
I'm working through 'Dive Into Python' on Google App Engine and came across this error while attempting to call one class's methods from another:
ERROR __init__.py:463] create() takes exactly 1 ...
0
votes
1answer
87 views
Dynamically add (pre-defined) instance method in Ruby
I see how to dynamically add a method to an instance in Ruby with def [instance].[methodname]; [...]; end.
However, I'm interested in attaching a method that exists in another location to a given ...
0
votes
1answer
381 views
problems with JNI on android - Java instance methods
Hoping there are more knowledgeable people around, here I go. The attempts to call a java instance method from C almost succeed, but on a veery frail ground...
Problem #1 - Calling into a java method ...
0
votes
1answer
119 views
Class Methods VS Instance Methods iphone
How can decide whether I should go with class method or instance method ? If I go with class method then how can I take care of memory allocation & deallocation? If I want to create singleton ...
0
votes
1answer
201 views
Setting instance variables with ActiveScaffold
I've recently added ActiveScaffold to an existing Rails project, and the problem I'm having is that the variable names that ActiveScaffold is using are not the same as the ones I already have. Rather ...
-3
votes
3answers
87 views
Best Practice for Static vs. Instance Methods when Values are Required
I've read about static vs. instance methods here, but I don't see any that answer this particular question (green as it may be).
When you have a class with some properties, and a method in that ...