-1
votes
0answers
22 views

Ruby change self parameters for 2D array

I have a class that enables to do that : $my_array_class[0] = 3 Codes : def [](id) @data[id] end def []=(id, value) @data[id] = value end So how can I do that for 2D arrays like: ...
-1
votes
2answers
65 views

Understanding Classes and Methods in Python 3

Alright, after viewing a lot of tutorial videos about classes i'm still having trouble understanding them for this assignment i have to do. I need to write a program that essentially does high card, ...
1
vote
1answer
110 views

Python class methods changing self

This isn't for anything I'm working on yet, it's just some test code as I'm just learning class methods and suck. But say I have the following code class Test(int): def __init__(self,arg): ...
0
votes
2answers
79 views

Objective-C how to call a method after self is initialized inside the object file?

Is there any way to know when a custom object is finished with being initialized from inside the object's file? Or let me rephrase the question, why can't I call any method inside this method? - ...
-1
votes
1answer
53 views

What's the difference between omitting `self` in method definition or not?

I know self is the receiver of the method calling. But I do not know if there is not self in method definition. code example: class One def kk "kk" end def self.kkk "kkk" end end ...
1
vote
2answers
30 views

self __init__ overwrite

I'm having trouble with with an initialization of an object, and methods overwriting data that I don't want overwritten. I apologize if my terminology is incorrect, as I use multiple coding languages ...
0
votes
0answers
74 views

Basic Python and Java Questions [closed]

I've just finished the text "Starting out with Python" and "Starting out with Java" and I was wondering if an experience Python and Java user could suggest further reading for more intermediate to ...
0
votes
1answer
36 views

rails controller good practices

I have a SpecificController as below, class SpecificController < ApplicationController def specific_search # ===== Main ======= self.set_instance_variables ...
1
vote
3answers
95 views

Is my understanding of 'self' correct?

I'll provide a simple method and then explain how I see it, if this is incorrect, please let me know and correct me. I feel like I understand 'self' but still doubt my self. -(NSString *)giveBack { ...
0
votes
1answer
1k views

Python leave() takes exactly 1 argument (0 given)

Ok so my problem is that when calling a method inside of my class from outside(top level), it takes the self parameter as if it would be an argument that it wants a value for, my class: class Client: ...
8
votes
4answers
483 views

How does a python method automatically receive 'self' as the first argument?

Consider this example of a strategy pattern in Python (adapted from the example here). In this case the alternate strategy is a function. class StrategyExample(object): def __init__(self, ...