-5
votes
0answers
44 views

How do you add functions to a class python [closed]

The following code is something I have come up with to satisfy a question I have been asked to answer. The only problem is that currently is is just a bunch of definitions and I need to add it all to ...
-1
votes
2answers
71 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, ...
0
votes
2answers
107 views

How to add arguments next to 'self' in a python function?

I'm trying to fix up a little program, but looks like I'm in a bit over my head. The whole code is too long to copy here, so I'm just gonna paste the problematic part. def kontroll(self): ...
0
votes
1answer
129 views

jQuery reference to self in custom function initialize

another challenge - this is more for cleaner looking code than a "how do I". Here's the idea. <section id="projector" data-start-at="7">....</section> in JS ...
3
votes
2answers
480 views

PHP static function self:: in joomla JFactory class explanation?

Hi I'm looking at the code of Joomla and trying to figure out what exactly happends in this function. index.php makes a call to function $app = JFactory::getApplication('site'); jfactory.php code ...
2
votes
2answers
250 views

Class instantiation and 'self' in python

I know a ton has been written on this subject. I cannot, however, absorb much of it. Perhaps because I'm a complete novice teaching myself without the benefit of any training in computer science. ...
0
votes
6answers
881 views

Php Submit to self returning source code

I am trying to submit a php form to self but after submit the page returns the source code of the page and not the processed data. I have a issset to check if the form has been submitted and then ...
2
votes
2answers
187 views

Python substitutes one of the parameters into self

I have encountered a funny situation in Python that I cannot resolve. I have a function definition inside one class like def a(self, x, y): and it's been called from other place like a(par1, par2). ...
0
votes
2answers
290 views

jQuery: Add function self to array?

Given a function, like so: var allev = new Array(); function events(index) { allev[index] = $(this); // doesn't work } Is there any way to get this to work in the way above, or am I always ...
3
votes
2answers
743 views

Can a JavaScript function return itself?

Can I write a function that returns iteself? I was reading some description on closures - see Example 6 - where a function was returning a function, so you could call func()(); as valid JavaScript. ...
7
votes
3answers
1k views

is there a self flag can reference python function inside itself?

I can access a python function's attribute inside of function itself by below code: def aa(): print aa.__name__ print aa.__hash__ # other simliar however, if above aa() function is a ...
1
vote
2answers
361 views

How to call a self.value in a class function definition in python?

How could I call a self.value in a definition of a function? class toto : def __init__(self): self.titi = "titi" def printiti(self,titi=self.titi): print(titi)
2
votes
1answer
1k views

javascript new self invoking function

Hey, I've got a question about self invoking functions in javascript. What I'm doing is something similar to the following myNamespace = {}; //namespace for holding any objects/functions ...
2
votes
2answers
79 views

copying functions located in instances

Here's some (simplified) code for what I'm trying to do: class a: pass class b: def printSelf(self): print self instOfA = a() instOfB = b() instOfA.printSelf = instOfB.printSelf ...