From Wikipedia: A subroutine, (also known as a procedure, function, routine, method, or subprogram) is a portion of code within a larger program that performs a specific task and is relatively independent of the remaining code. The content of a subroutine is its body, the piece of program code ...
30
votes
8answers
57k views
43
votes
3answers
5k views
Why are Perl 5's function prototypes bad?
In another question a member asserted "I would advice you not to use prototypes. They have their uses, but not for most cases and definitely not in this one."
Can anyone elaborate on why this might ...
40
votes
5answers
10k views
JavaScript function aliasing doesn't seem to work
I was just reading this question and wanted to try the alias method rather than the function-wrapper method, but I couldn't seem to get it to work in either Firefox 3 or 3.5beta4, or Google Chrome, ...
80
votes
4answers
5k views
15
votes
10answers
2k views
Sizeof an array in the C programming language?
why isn't the size of an array sent as a parameter the same as within main?
#include <stdio.h>
void PrintSize(int p_someArray[10]);
int main () {
int myArray[10];
printf("%d\n", ...
81
votes
5answers
26k views
Why was the arguments.callee.caller property deprecated in JavaScript?
Why was the arguments.callee.caller property deprecated in JavaScript?
It was added and then deprecated in JavaScript, but it was omitted altogether by ECMAScript. Some browser (Mozilla, IE) have ...
13
votes
4answers
3k views
Difference between method and function in Scala
i read http://www.naildrivin5.com/scalatour/wiki_pages/ScalaFunctions. In that post
he specified Methods and functions are not the same thing. But he didn't explain anything
about it. can anyone ...
73
votes
6answers
93k views
Getting a better understanding of callback functions in JavaScript
I understand passing in a function to another function as a callback and having it execute, but I'm not understanding the best implementation to do that. I'm looking for a very basic example, like ...
30
votes
12answers
24k views
How to Truncate a string in PHP to the word closest to a certain number of characters?
I have a code snippet written in PHP that pulls a block of text from a database and sends it out to a widget on a webpage. The original block of text can be a lengthy article or a short sentence or ...
32
votes
11answers
2k views
What is the point of function pointers?
I have trouble seeing the utility of function pointers. I guess it may be useful in some cases (they exist, after all), but I can't think of a case where it's better or unavoidable to use a function ...
13
votes
5answers
13k views
PHP echo vs PHP short tags
Are they equal in safeness? I was informed that using
<?=$function_here?>
was less safe, and that it slows down page load.
So I am now strictly biased to using echo.
I just wanted to know ...
67
votes
6answers
11k views
Simplest/Cleanest way to implement singleton in JavaScript?
What is the simplest/cleanest way to implement singleton pattern in JavaScript?
53
votes
11answers
35k views
JQuery pass more parameters into callback
Is there a way to pass more data into a callback function in Jquery?
I have two functions and I want the callback to the $.post, for example, to pass in both the resulting data of the AJAX call, as ...
45
votes
9answers
22k views
How to turn a String into a javascript function call?
I got a string like:
settings.functionName + '(' + t.parentNode.id + ')';
that I want to translate into a function call like so:
clickedOnItem(IdofParent);
This of course will have to be done in ...
5
votes
7answers
2k views
PHP syntax for dereferencing function result
In every other programming language I use on a regular basis, it is simple to operate on the return value of a function without declaring a new variable to hold the function result.
In PHP, however, ...
4
votes
2answers
301 views
javascript scope problem when lambda function refers to a variable in enclosing loop
First question on stackoverflow :) Hope I won't embarrass myself...
I have a javascript function that loads a list of albums and then it creates a list item for each album. The list item should be ...
68
votes
18answers
33k views
What is the difference between a method and a function
I am a long-time Applescript user and new shell scripter who wants to learn a more general scripting language like Javascript or Python for performance reasons.
I am having trouble getting my head ...
104
votes
4answers
17k views
What is the difference between call and apply?
What is the difference between using call and apply to invoke a function?
var func = function(){
alert('hello!');
};
func.apply();
vs
func.call();
Are there performance differences between ...
58
votes
5answers
2k views
Arguments or parameters?
I often find myself confused with how the terms 'arguments' and 'parameters' are used. They seem to be used interchangeably in the programming world.
What's the correct convention for their use?
24
votes
4answers
5k views
What is the difference between a language construct and a “built-in” function in PHP?
I know that include, isset, require, print, echo, and some others are not functions but language constructs.
Some of these language constructs need parentheses, others don't.
require 'file.php';
...
16
votes
2answers
3k views
Function with same name but different signature in derived class
I have a function with the same name, but with different signature in a base and derived classes. When I am trying to use the base class's function in another class that inherits from the derived, I ...
10
votes
4answers
9k views
raise error within MySql function
I've created a MySql function and would like to raise an error if the values passed for the parameters are invalid. What are my options for raising an error within a MySql function?
Thanks,
Don
6
votes
8answers
685 views
How would you go about designing a function for a perfect hash?
The domain of interest is string matching. Assume I have a structure like this.
typedef struct
{
char *name,
int (*function)();
} StringArray
StringArray s[] =
{
{"George", func1},
...
3
votes
5answers
13k views
How to get javascript function data into Php variable
Dear all
I am using PHP and Javascript, My Javascript conatains function get_data()
function get_Data(){
var name;
var job;
.....
return buffer;
}
...
2
votes
2answers
191 views
Creating a function reference that has value parameters not references
I'm not sure exactly how to describe what I want. I want to define a function with the parameters being a local VALUE not a reference.
say I have list of objects I want to create
for(i = 0; i < ...
9
votes
17answers
8k views
Puzzle: Overload a C++ function according to the return value
We all know that you can overload a function according to the parameters:
int mul(int i, int j) { return i*j; }
std::string mul(char c, int n) { return std::string(n, c); }
Can you overload a ...
3
votes
9answers
5k views
Must declare function prototype in C?
I am kind of new to C (I have prior Java, C#, and some C++ experience). In C, is it necessary to declare a function prototype or can the code compile without it? Is it good programming practice to do ...
18
votes
10answers
3k views
C++ overload resolution
Given the following example, why do I have to explicitly use the statement b->A::DoSomething() rather than just b->DoSomething()?
Shouldn't the compiler's overload resolution figure out which ...
4
votes
4answers
2k views
Is it possible to replace (monkeypatch) PHP functions?
You can do this in Python, but is it possible in PHP?
>>> def a(): print 1
...
>>> def a(): print 2
...
>>> a()
2
e.g.:
<? function var_dump() {} ?>
Fatal error: ...
2
votes
4answers
217 views
Is every JavaScript Object a function?
Is there a JavaScript Object that is not a function?
javascript: x=y=z=Object; alert([window.navigator.userAgent,x,y,z].join("\n\n"))
(There was a comment that x,y,z are merely references in which ...
83
votes
4answers
59k views
How do you pass a function as a parameter in C?
I want to create a function that performs a function passed by parameter on a set of data. How do you pass a function as a parameter in C?
71
votes
26answers
7k views
Should functions return null or an empty object?
What is the best practice when returning data from functions. Is it better to return a Null or an empty object? And why should one do one over the other?
Consider this:
public UserEntity ...
23
votes
2answers
10k views
PHP function to generate v4 UUID
So I've been doing some digging around and I've been trying to piece together a function that generates a valid v4 UUID in PHP. This is the closest I've been able to come. My knowledge in hex, ...
32
votes
4answers
6k views
`new function()` with lower case “f” in JavaScript
My colleague has been using "new function()" with a lower case "f" to define new objects in JavaScript. It seems to work well in all major browsers and it also seems to be fairly effective at hiding ...
19
votes
24answers
2k views
When is a function too long?
35 lines, 55 lines, 100 lines, 300 lines? When you should start to break it apart? I'm asking because I have a function with 60 lines (including comments) and was thinking about breaking it apart.
...
27
votes
11answers
5k views
Why C# is not allowing non-member functions like C++
C# will not allow to write non-member functions and every method should be part of a class. I was thinking this as a restriction in all CLI languages. But I was wrong and I found that C++/CLI supports ...
19
votes
6answers
13k views
Jump to function definition in vim
How can i jump to to a function definition using VIM? For example with Visual Assist i can type ALT+g under a function and it opens a context menu listing the files with definitions.
How can i do ...
8
votes
5answers
953 views
Is eval() and new Function() the same thing?
Are these two functions doing the same thing behind the scenes? (in single statement functions)
var evaluate = function(string) {
return eval('(' + string + ')');
}
var func = function(string) {
...
74
votes
8answers
11k views
Is there a better way to do optional function parameters in Javascript?
I've always handled optional parameters in Javascript like this:
function myFunc(requiredArg, optionalArg){
optionalArg = optionalArg || 'defaultValue';
//do stuff
}
Is there a better way to ...
21
votes
6answers
4k views
Why can I use a function before it's defined in Javascript?
This code always work, and across browsers.
function fooCheck(){
alert(internalFoo());
return internalFoo();
function internalFoo(){ return true; }
}
fooCheck();
I could not find a single ...
14
votes
9answers
1k views
Why doesn't C++ support functions returning arrays?
Some languages enable you to just declare a function returning an array like a normal function, like Java:
public String[] funcarray() {
String[] test = new String[]{"hi", "hello"};
return ...
7
votes
2answers
1k views
jquery - difference between $.functionName and $.fn.FunctionName
In jQuery, I have seen both the following ways of defining a jQuery function:
$.fn.CustomAlert = function() {
alert('boo!');
};
$.CustomAlert = function() {
alert('boo!');
};
I understand that ...
14
votes
10answers
2k views
How does the friend keyword (Class/Function) break encapsulation in C++?
Some programmer said that, "a friend function break the encapsulation in C++". and some programmer also said, "Friend functions do not break encapsulation; instead they naturally extend the ...
11
votes
5answers
2k views
What ways are there to edit a function in R?
Let's say we have the following function:
foo <- function(x)
{
line1 <- x
line2 <- 0
line3 <- line1 + line2
return(line3)
}
And that we want to change the second line to ...
5
votes
2answers
376 views
JavaScript prototype limited to functions?
o.prototype = {...}
is working only if o is a Function.
Suppose I've the following Code
conf = {
a: 2,
b: 4
};
conf.prototype = {
d: 16
}
conf.a and conf.b is OK and returns proper ...
4
votes
4answers
464 views
Scoping and functions in R 2.11.1 : What's going wrong?
This question comes from a range of other questions that all deal with essentially the same problem. For some strange reason, using a function within another function sometimes fails in the sense that ...
12
votes
5answers
3k views
Nested function in C
Can we have a nested function in C? What is the use of nested functions? If they exist in C does there implementation differes from compiler to compiler.
Are nested functions allowed in any other ...
6
votes
14answers
864 views
Why do functions in some popular languages return only a single type of result?
Why do functions in some popular languages return only a single type of result?
i.e I mean Why The Compilers give Error on Following Syntax
public int int returnTwoIntegers(){
.......
........
}
1
vote
7answers
1k views
Javascript and PHP functions
Is it possible to call a function from PHP using onsubmit from javascript? If so could someone give me an example of how it would be done?
function addOrder()
{
$con = ...
4
votes
4answers
2k views
Android webview SKIPS javascript even with setJavascriptEnabled(true) and WebChromeClient
(using Samsung Galaxy Tab and Android 3.0, this is intended to work on every 3.0+ tablet, like it does in their browsers, just not webview)
I have a page with CSS and jQuery that loads fine in ...