0
votes
0answers
16 views

When to use a PHP Genrator function/object

I'm studying PHP 5.5's generator which allows information to be yielded as opposed to returned. As I understand it, this saves memory because it is not storing the information? Though my ...
3
votes
2answers
81 views

Wrapping an accessor method for a global object in some other function

I do a lot of stuff specifically with PHP and WordPress, and I've come across this concept quite often throughout the WordPress application; although, this question isn't specific to WordPress. I'll ...
1
vote
4answers
46 views

Is there an accepted way to omit a parameter from a function/method?

Let's say (hypothetically) I have an object constructor MyObj, which has a method like this: MyObj.prototype.method = function(x, y){ x = x || this.x; //default value y = y || this.y; } ...
0
votes
2answers
42 views

Placing JavaScript functions inside of an object of a variable

I see this quite often, but I'm not sure as to the purpose of it or what the advantages would be (if any). Placing a function or sets of functions inside of an object, as a value for a variable. var ...
0
votes
5answers
57 views

Accept different types in python function?

I have a Python function that does a lot of major work on an XML file. When using this function, I want two options: either pass it the name of an XML file, or pass it a pre-parsed ElementTree ...
0
votes
0answers
63 views

Using a Javascript object in an if statement

Hi I'm fairly new to Javascript code and can't seem to get some code to work, any help would be really appreciated I'm trying to pass an object property into an if statement using a function argument ...
0
votes
3answers
22 views

Call base Class function

say I have : File BaseFoo.php : require('MyClass1.php') class BaseFoo(){ function check(){ //do somme stuff } function f1($o){ $c = new MyClass1(); return $c->f1($o); } ...
-10
votes
2answers
86 views

Write a java program for a report card [closed]

Like this post for no reason!!!
-10
votes
2answers
56 views

How to store a returned object from a method in a new object in the main method in JAVA [closed]

It shows array dimension missing. new obj[] = mark_entry(); where mark_entry() is a method.
2
votes
1answer
36 views

“Object Required” when caling function in sub in VBA Excel

In my VBA program for excel; I have a function called "ParamCheck" which get four "double" variables, checks them and returns a message as "string". Function ParamCheck(airSpeed As Double, FCUvalue ...
-1
votes
1answer
22 views

PHP Passing by value to function large objects and modifing small part of it [closed]

I read a lot that passing by reference to functions in php is wrong if we don't really need to change original object and we want to increase performance. So let's say I'm passing a quite large object ...
0
votes
1answer
32 views

DataTables mRender “object is not a function” error

I am using DataTables to create a table. After I init the table, I would like to change some settings that control how one of the columns is rendered, like so: var st = ...
-2
votes
2answers
37 views

Java: nested class function?

ob is an instance of an object. If I call the function getname it returns the class type ob.getClass().getName() My doubt is, how come getclass and getname are 2 functions, are they some how ...
0
votes
0answers
12 views

how can I make a generic function for pushing a class object into an array?

this is my first time asking a question on this form so please go easy on me if I say something stupid! I'm trying to make a tower defense game in actionscript 3 that has enemies and power ups as ...
3
votes
4answers
82 views

The benefit of function objects?

I have known that the function objects used in STL is just simple object that we can operator it like a function. That I can say the works of function and function objects is the same. If it's true, ...
-4
votes
0answers
45 views

How hard would it be to make simple match pictures game in Python? [closed]

I'd like to know how hard would you think it would be for me to make a simple match pictures game. There will be squares you have to click on, and when you click on them they turn around with a ...
1
vote
2answers
49 views

jQuery typeerror object not a function when grabbing a value from label

I am trying to simply get a value from a label with an id. I have jQuery experience, but cannot figure out why I keep getting a "Uncaught TypeError: object is not a function" error on the first line ...
0
votes
1answer
21 views

Using an object animation (functions) in jMokey Game Engine?

I know i'm new to this, I did search a lot on how to use an Object's functions "like movement or jumping" in jMonkey, if you can tell me the keyword to search for, o the extension f the 3D object ...
0
votes
2answers
46 views

jQuery function as a property value of an object

I have an object within an object which contains a property whose value is a jQuery function: var fields = { id: {}, timeStarted: {}, duration: {}, status: {}, name: { ...
-1
votes
2answers
72 views

How to call function within java-script object [closed]

Not sure if I am doing this correctly but I am trying to teach myself how to use javascript objects. This is smaller example of what I am currently doing. var site = { account:{ ...
0
votes
4answers
65 views

C++ Enum Returning Function to be Used in Constructor

I want to return an enum value from function, as my constructor requires an enum value to be created. My class : class myBasket{ enum myType {type1, type2, type3} MT; public: myBasket(myType ...
0
votes
1answer
76 views

jquery fn.extend() returning values and call values in object

I need some help in understanding something, that propably is easy for serious jquery and javascript programmers. Lets say I have a code like this: jQuery.fn.extend({ myNameSpace: { ...
0
votes
2answers
54 views

Object-Natured Functions

Context I've noticed that some functions can only be called with the new prefix. When called without it, the error Illegal Invocation is thrown. Below is two examples of how the console reacted when ...
0
votes
1answer
55 views

cannot call member function without object [duplicate]

There's the main file (where the error is occurring): #include "classe_Segundo.h" #include <iostream> using namespace std; CSegundo a; int main (){ cout << "Equacao de Segundo ...
2
votes
1answer
29 views

javascript: clone a function by assigning it to a variable

Why can't I clone a function in javascript by assigning it to another variable? E.g: var $ = document.getElementById; Usage attempt: typeof $; //--> "function" $('nav'); //--> ...
0
votes
1answer
40 views

Using DateTime and DateInterval functions in Twig

I have two objects in Twig: {{ date }} is DateTime object {{ interval }} is DateInterval object I need to show date with interval added. How can I use DateObject php function like add() with this ...
0
votes
3answers
30 views

How do I get jquery object with js function work simultaneously in a single page

I need jquery object and non-jquery function to work in a single page. This is what I have in my head <script src="jquery.js" type="text/javascript"> $('a.mini-view').click(function(){ ...
0
votes
0answers
41 views

How to execute/initiate multiple function objects using init function

I want to execute all functions below, using one function init(); instead of document.ready function. Can anybody suggest? Thanks in advance. var images = [ {image : image1.jpg}, {image : ...
7
votes
8answers
108 views

Javascript: Function Chaining

solution: nope. you can't do it. chain commands with && and be done with it. tl;dr: in random.function("blah").check(), how do I make it ignore check() if function("blah") returns false? Or ...
4
votes
2answers
142 views

Javascript functions overriden prototype

I've found some interesting examples on SO. Among them was link to this article. It's said that: Function.__proto__ points to Function.prototype. This results in: Function.constructor === ...
0
votes
1answer
36 views

Function in an object

JS-folks, I've got a problem with a little test-script. I've got this JS: var button = { lastClick: 0, nowTime: new Date().getTime(), go: function () { var diff = this.nowTime - ...
3
votes
2answers
63 views

javascript passing an object into function

var o = {}; (function(x){x=null})(o); //o is NOT null after this statement (function(x){x.foo = "foo"; x.bar = "bar";})(o) //o has properties foo and bar after this statement what is going ...
0
votes
0answers
17 views

“Function does not take 1 arguments” error with object as parameter

Ok, so I am creating code for a group project in my class. All my group members made a header file with an object in it with their functions. One of the functions in my partner's code uses a data ...
0
votes
1answer
57 views

How can I call a function stored in an object that is being used as an argument for another function?

I'll be honest, I'm in way over my head with this one. Any help would be appreciated. OBJECTIVE I want to call a function called restart, but the function is inside an object and is being passed to ...
0
votes
1answer
36 views

JavaScript - declaring of a function with features

I'm new to JS and studied some code from web apps. Can anybody tell me the difference between these two declarations, are they both kind of objects with featured functions? When use which declaration? ...
0
votes
0answers
91 views

Call to a member function prepare() on a non-object

I recently updated my website from PHP4 to PHP5 and I want to use the PDO class because of its security (SQL-Injections). But there's something wrong with my code. The error says, $connect isn't an ...
0
votes
2answers
41 views

Stacktracing Functions Javascript

I know I saw a link to a great description of this somewhere, but alas I cannot dig it out again. I am having trouble stacktracing with console.log in Javascript because they are all coming up ...
0
votes
0answers
40 views

uncaught typeerror on calling $.load() function

I am constructing a page from a JSON using javascript. I am trying to follow a OOJS in building the page. How I am getting the JSON : I am using RESTful api to get the JSON. Once I get the JSON I ...
1
vote
2answers
43 views

Function using an object created by a higher level function

I have two functions one inside the other fun.a <- function (y,smth) { z <- y*3 sapply(smth,FUN = fun.b) } fun.b <- function(x) { return(x+z) } If I run: fun.a(2, c(1, 2, ...
-1
votes
1answer
35 views

Confused with function-object usage in Python [closed]

Am currently learning python using "Think Python" in which i came through a certain piece of code like below and am being a beginner programmer i don't understand how it works, explain me the code ...
0
votes
6answers
108 views

Java Array List and object passing

I have a list of string in my code. I am passing that list of string to a function and modifying it.( I am adding/deleting few elements from the list).But i dont want these changes to get reflected in ...
7
votes
4answers
80 views

Is it ok to define a prototype function on Object in Javascript?

Object.prototype.doSomething = function(p) { this.innerHTML = "<em>bar</em>"; this.style.color = "#f00"; alert(p); }; document.getElementById("foo").doSomething("Hello ...
0
votes
1answer
52 views

Python call a member function or variable of an object that is in a list of objects

I have a list of objects. I want to call the variables or functions of the objects in that list. (With so many basic keywords in this problem, it's been quite difficult to find a solution or guide for ...
0
votes
1answer
40 views

How to get rid of exclamation mark of script this$.text();

SAMPLE: - jsFiddle This script: var slides = []; $("ul .image").each(function() { var this$ = $(this); var obj = {}; obj.image = this$.text(); slides.push(obj); }); ...
-2
votes
1answer
43 views

Object var vs Function

What is the difference between these 2 types of structures var bar = { something : value, execute : function() { /* Whatever */ } } function foo() { this.something = value; ...
-1
votes
5answers
48 views

The 'this' keyword in functions

Taken from ejohn.org: function katana(){ this.isSharp = true; } katana(); assert( isSharp === true, "A global object now exists with that name and value." ); This comes out as true. Could ...
2
votes
2answers
219 views

Javascript array/object of functions by reference

Given: function shout(){ alert('Hello!'); } var dasarray = [ shout ]; shout(); dasarray[0](); shout = function(){ alert('World!'); } shout(); dasarray[0](); Output: Hello! Hello! World! ...
0
votes
1answer
55 views

Returning a JSON object from a Javascript function

Trying to parse through some livestream JSON data and see if an event has a specific tag. If it doesn't then I'll use that data to output values, etc. For whatever reason, upcoming_event isn't being ...
1
vote
1answer
55 views

is it possible to return an object of callback functions?

I'm trying to build a function that when called in different ways it can return an object of callbacks, It would be something like this : var myFunc = function($scope, callback) {}; myFunc("hide", ...
2
votes
3answers
48 views

scope in javascript object

Here's my code: var Test = (function () { function Test() { this.sum = n; this.calculate(); } Test.prototype.calculate = function() { n = 5; return n; ...

1 2 3 4 5 7