The instance-methods tag has no wiki summary.
0
votes
1answer
49 views
mongoose instance method is undefined AFTER correctly ordering method definition and schema naming
I defined an instance method on a schema that I can't seem to access. Before I go into details, I'll say that I have read [this question] (Mongoose instance method is undefined), which had the same ...
1
vote
1answer
56 views
Python — Decorator that works on both classmethods and instance methods
I have two decorators, defined as follows, both of which do the exact same thing:
# ONLY WORKS FOR CLASSMETHODS
def paginated_class_method(default_page_size=25):
def wrap(func):
...
0
votes
2answers
69 views
Python decorator on instance method
Anyone know what is wrong with this code?
def paginated_instance_method(default_page_size=25):
def wrap(func):
@functools.wraps(func)
def inner(self, page=1, ...
0
votes
1answer
65 views
Ruby: Namespacing of instance methods
I have TONS of instance methods, all sharing the same instance variables.
Since the class became huge, I split the methods into around 50 modules.
And then the class that is left is including all ...
-1
votes
2answers
109 views
Objective C delegates and class methods vs instance methods
There is a similar question to mine on the following link
but it doesn't quite answer my query.
I am setting a helper class for Facebook (follows the delegation pattern) . An example of one of the ...
0
votes
1answer
132 views
iOS delegate method not being called when wanted to
I have a custom data controller that I use for my application and within it I have some delegate methods I have set up. They all work but not when I want them too. When I call [dataController ...
0
votes
5answers
130 views
Calling ruby method without instantiating class
If I call a method on a rails active model method like so:
class Foo < ActiveRecord::Base
end
Foo.first
I'll get back the first active record. I don't have to instantiate the class.
But if I ...
0
votes
7answers
224 views
Can not make static reference to non static method?
So, in short. I have two classes.
package rpg;
public class Engine {
public void main(String args[]) {
Start.gameStart();
System.out.println(menuResult);
}
}
and
package ...
1
vote
1answer
96 views
Calling instance methods from Class methods in ruby
Is this the right way of calling an Instance method from a class method? Here the instance_var is passed with the Name object. I want to invoke func1 from the instance_var object passed to the class ...
4
votes
2answers
107 views
Python 3: When is a call to an instance attribute resolved as if it is an instance method?
class C:
def func(self, a):
print(a)
c = C()
print(c.__dict__) # {}
c.func = c.func
# c.func is now an instance attribute, which hides instance method
print(c.__dict__) # {'func' : (bound ...
0
votes
3answers
289 views
Ruby: Can I use instance methods inside a class method?
I have a class that contains this class method:
def self.get_event_record(row, participant)
event = Event.where(
:participant_id => participant.id,
:event_type_code => ...
0
votes
1answer
39 views
Twinned static and instance methods
I've got a class, like this, simplified:
public class Bookmark
{
public string Nav { get; set; }
public string Scroll { get; set; }
public string Comment { get; set; }
public ...
1
vote
2answers
70 views
Threading behavior of methods of a class object declared as static member of another class
Recently a colleague of mine came up with a piece of code and asked my opinion regarding thread safety of the code. Below is an example that illustrates the same scenario as the code.
public class ...
1
vote
3answers
108 views
Wrap another method at class definition
I want to create a method (set) that injects arguments into another (set_result). I've tried this using partial as below.
from functools import partial
class MyClass(MyClassParent):
set = ...
1
vote
5answers
632 views
Why can -respondsToSelector: instance method be used on class name or class object?
In Programming in Objective C, 4e, Chapter 9, Program 9.3:
#import "Square.h"
int main (int argc, char * argv[])
{
@autoreleasepool {
Square *mySquare = [[Square alloc] init];
...
...
4
votes
4answers
411 views
Adding attributes to instance methods in Python
I would like to add an attribute to an instance method in one of my classes. I tried the answer given in this question, but this answer only works for functions -- as far as I can tell.
As an ...
-3
votes
3answers
386 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 ...
0
votes
2answers
207 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
187 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
25 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
483 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
275 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
164 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
189 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 ...
2
votes
0answers
292 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 ...
3
votes
4answers
591 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 ...
0
votes
1answer
163 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 ...
1
vote
1answer
1k 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 ...
8
votes
4answers
2k 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
...
4
votes
4answers
298 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 ...
2
votes
2answers
65 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 ...
0
votes
2answers
778 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 ...
2
votes
2answers
50 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 ...
1
vote
2answers
169 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?
2
votes
3answers
169 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 ...
2
votes
2answers
83 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
2answers
618 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]
...
3
votes
1answer
676 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
...
9
votes
2answers
2k 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 ...
1
vote
2answers
756 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 ...
3
votes
2answers
851 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 ...
3
votes
1answer
307 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 ...
11
votes
3answers
1k 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:
...
8
votes
5answers
2k 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 ...
1
vote
3answers
2k 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
1answer
258 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 ...
5
votes
1answer
168 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 ...
148
votes
14answers
104k views
What is the difference between class and instance methods?
What's the difference between a class method and an instance method?
Are instance methods the accessors (getters and setters) while class methods are pretty much everything else?
7
votes
3answers
784 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 ...