A function (also called a procedure, method, subroutine, or routine) is a portion of code intended to carry out a single, specific task.

learn more… | top users | synonyms (1)

61
votes
4answers
3k views

Why is the size of a function in C always 1 byte?

When we check the size of a function using sizeof(), we always get 1 byte. What does this 1 byte signify?
42
votes
8answers
186k views

Array functions in jQuery

I am using jQuery in my web application. I want to use arrays, but I am not able to find out functions for arrays (add, remove or append elements in array) in jQuery. Is there any link related to ...
16
votes
3answers
13k views

When to use a Class vs. Function in PHP

The lightbulb has yet to go on for this... I'd really love an easy to understand explanation of the advantage to using a class in php over just using functions. Here's a simple example of the ...
13
votes
10answers
8k views

How can I find all the methods that call a given method in Java?

I need to get a list of all caller methods for a method of interest for me in Java. Is there a tool that can help me with this? Edit: I forgot to mention that I need to do this from a program. I'm ...
13
votes
1answer
5k views

Extending an existing jQuery function

I am trying to write a plugin that will extend an existing function in jQuery, e.g. (function($) { $.fn.css = function() { // stuff I will be extending // that doesn't ...
24
votes
14answers
13k views

Elegant ways to return multiple values from a function

It seems like in most mainstream programming languages, returning multiple values from a function is an extremely awkward thing. The typical solutions are to make either a struct or a plain old data ...
23
votes
8answers
6k views

Writing a vim function to insert a block of static text

I'd like to be able to do something like this in vim (you can assume v7+ if it helps). Type in a command like this (or something close) :inshtml and have vim dump the following into the current ...
19
votes
5answers
37k views

PHP Fatal error: Using $this when not in object context

I've got a problem: I'm writing a new WebApp without a Framework. In my index.php im using: require_once('load.php'); and in * load.php* I'm using require_once('class.php'); to load my class.php. ...
8
votes
2answers
11k views

Return value from nested function in Javascript

I have a function that is set up as follows function mainFunction() { function subFunction() { var str = "foo"; return str; } } var test = mainFunction(); ...
7
votes
4answers
9k views

Dynamically invoking any function by passing function name as string

How do I automate the process of getting an instance created and its function executed dynamically? Thanks Edit: Need an option to pass parameters too. Thanks
5
votes
5answers
2k views

How to call java objects and functions from CPython?

I have a python program, which runs on the CPython implementation, and inside it I must call a function defined in a java program. How can I do this? It would be nice to be able to use some java ...
25
votes
8answers
3k views

Uses for Haskell id function

Which are the uses for id function in Haskell?
22
votes
10answers
11k views

Which is more preferable to use in Python: lambda functions or nested functions ('def')?

I mostly use lambda functions but sometimes use nested functions that seem to provide the same behavior. Here are some trivial examples where they functionally do the same thing if either were found ...
20
votes
4answers
4k views

How do I flag a function as being deprecated in an iPhone Objective C header file?

Does any one know how to do this? I'm guessing there's just some keyword I can stick after the function somewhere? EDIT: I would like for a compiler warning to be generated should anyone try and use ...
11
votes
1answer
2k views

Given an array of arguments, how do I send those arguments to a particular function in Ruby?

Forgive the beginner question, but say I have an array: a = [1,2,3] And a function somewhere; let's say it's an instance function: class Ilike def turtles(*args) puts args.inspect end end ...
10
votes
8answers
862 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}, ...
8
votes
15answers
821 views

Why are some functions extremely long? (ideas needed for an academic research!)

I am writing a small academic research project about extremely long functions. Obviously, I am not looking for examples for bad programming, but for examples of 100, 200 and 600 lines long functions ...
7
votes
5answers
9k views

Javascript: Get access to local variable or variable in closure by its name [duplicate]

Possible Duplicate: How can I access local scope dynamically in javascript? Hi all. We all know that you can access a property of a javascript object by it's name using the [] syntax.. e.g. ...
19
votes
5answers
9k views

functions inside or outside jquery document ready

Up until now I just put all my jQuery goodness inside the $(document).ready() function, including simple functions used in certain user interactions. But functions that don“t require the DOM ...
17
votes
7answers
14k views

Dynamic static method call in PHP?

Please could someone experienced in PHP help out with the following. Somewhere in my code, I have a call to a public static method inside a non-instantiated class: $result = ...
10
votes
3answers
767 views

Is there a way to wrap all JavaScript methods with a function?

I want to wrap every function call with some logging code. Something that would produce output like: func1(param1, param2) func2(param1) func3() func4(param1, param2) Ideally, I would like an API ...
10
votes
2answers
645 views

Code-Golf: one line PHP syntax

Explanation PHP has some holes in its' syntax and occasionally in development a programmer will step in them. This can lead to much frustration as these syntax holes seem to exist for no reason. For ...
9
votes
4answers
10k views

Call C++ library in C#

I'm a newbie for C#, i have a lot of libraries are wrote with C++, when I want to call these libraries in C#, i met many problems. I want to know if there is a book or guideline to tell me how to do ...
7
votes
5answers
868 views

Creating a jQuery like “$” object

My end goal is being able to do something like this: MyVar(parameter).functionToPerform(); Silly enough, even after reading up on how variables are declared, looking at the jQuery code, ... I still ...
3
votes
2answers
4k views

Determine calling function in javascript [duplicate]

Possible Duplicate: How do you find out the caller function in JavaScript? How can I find out in a javascript function which was the calling (the former in the call stack) function? I ...
12
votes
2answers
3k views

Pass arguments from array in php to constructor [duplicate]

Normally, if I want to pass arguments from $myarray to $somefunction I can do this in php using call_user_func_array($somefunction, $myarray); However this does not work when the function one ...
9
votes
3answers
721 views

Scala Functional Literals with Implicits

Forgive me if this has already been asked elsewhere. I have a Scala syntax question involving function-values and implicit parameters. I'm comfortable using implicits with Scala's currying ...
9
votes
7answers
1k views

Python: How to pass arguments to the __code__ of a function?

The following works: def spam(): print "spam" exec(spam.__code__) spam But what if spam takes arguments? def spam(eggs): print "spam and", eggs exec(spam.__code__) TypeError: ...
8
votes
2answers
4k views

How can I use modules in web2py?

I have some functions in func.py that I would like to access from my web2py controller called default.py. I tried to import and use func.py in default.py with "import func" and "calculatesomething = ...
8
votes
6answers
7k views

Array of function pointers in Java

I have read this question and I'm still not sure whether it is possible to keep pointers to methods in an array in Java, if anyone knows if this is possible or not it would be a real help. I'm trying ...
7
votes
5answers
6k views

How to store a function pointer in C#

Let's say I want to store a group of function pointers in a List<(*func)>, and then later call them, perhaps even with parameters... Like if I stored in a Dict<(*func), object[] params> ...
7
votes
6answers
4k views

When to use function-like macros in C

I was reading some code written in C this evening, and at the top of the file was the function-like macro HASH: #define HASH(fp) (((unsigned long)fp)%NHASH) This left me wondering, why would ...
7
votes
2answers
4k views

How do you trigger javascript functions from flash?

How do you trigger a javascript function using actionscript in flash? The goal is to trigger jQuery functionality from a flash movie
6
votes
1answer
2k views

Greasemonkey, overriding website functions

i've been reading a lot and have been trying to get this done for about 5 hours now... so here it is I want to write a script that will override a function dummy() {$.ajax(...)}; on a website. here ...
6
votes
2answers
3k views

Can Javascript get a function as text?

Can Javascript get a function as text? I'm thinking like the inverse of eval(). function derp() { a(); b(); c(); } alert(derp.asString()); The result would be something like "a(); b(); c();" Does ...
6
votes
8answers
46k views

Making a global variable accessible for every function inside a class

I have a variable on the global scope that is named ${SYSTEM}, where SYSTEM is a defined constant. I've got a lot of classes with functions that need to have access to this variable and I'm finding it ...
6
votes
3answers
1k views

Is there an inverse function of *SysUtils.Format* in Delphi

Has anyone written an 'UnFormat' routine for Delphi? What I'm imagining is the inverse of SysUtils.Format and looks something like this UnFormat('a number %n and another %n',[float1, float2]); ...
5
votes
5answers
3k views

mySQL Stored Function to create a slug

Is there a mysql stored function out there to create a slug from a url (or any value really). So my query can be: SELECT *, SLUG(url) FROM clients
4
votes
6answers
3k views

Ruby: building a plot of function

What's the easiest way to build a plot of a function under Ruby? Any suggestions as to the special graphical library? update: under windows only :-( update 2: found the following gem as a best ...
3
votes
6answers
626 views

Create a function for given input and ouput

Imagine, there are two same-sized sets of numbers. Is it possible, and how, to create a function an algorithm or a subroutine which exactly maps input items to output items? Like: Input = 1, 2, 3, 4 ...
2
votes
7answers
4k views

Round up to nearest multiple of five in PHP

I want a php function which returns 55 when calling it with 52. I've tried the round() function: echo round(94, -1); // 90 It returns 90 but I want 95. Thanks.
2
votes
3answers
2k views

How to examine the code of a function in R that's object class sensitive

I'm trying to write a function to do a particular job (in my case, analyse a data set for outliers) so the first things I want to do is look at how other people have done similar jobs. I can do this ...
1
vote
3answers
329 views

is it possible to include an event in a javascript function?

i was just wondering if getting a jqgrid event from a main javascript and separate it using another javascript in a form of function would work? what im trying to do is like this. i have a code : ...
0
votes
4answers
2k views

PHP/MySQL - an array filter for bots

I'm making a hit counter. I have a database and I store the IP and $_SERVER['HTTP_USER_AGENT']; of the visitors. Now I need to add a filter, so I can put away the hits, that are made by bots. I found ...
12
votes
2answers
4k views

Can someone explain to me the pack() function in PHP?

I would like to know more about the pack() function in PHP: http://fi.php.net/manual/en/function.pack.php I know it packs data into binary, but I'm not sure what all those v V n N c C mean and I was ...
11
votes
4answers
3k views

Emulating named function parameters in PHP, good or bad idea?

Named function parameters can be emulated in PHP if I write functions like this function pythonic(array $kwargs) { extract($kwargs); // .. rest of the function body } // if params are ...
9
votes
10answers
1k views

Can I get polymorphic behavior without using virtual functions?

Because of my device I can't use virtual functions. Suppose I have: class Base { void doSomething() { } }; class Derived : public Base { void doSomething() { } }; // in any place { Base ...
8
votes
3answers
523 views

MySQL string functions

I have a a table with the following data: reservno || icode || location 00004 || 00021 || Bohol - Cebu 00004 || 00022 || Cebu - Manila 00004 || 00014 || Manila - Bohol I use this query to ...
7
votes
4answers
244 views

Why the Compiler does not detect correct function signature in error?

The question is in reference to this, which was posted a little while earlier. While the OP was happy accepting the answer which solved his problem I was a little intrigued with a detail as to why ...
7
votes
9answers
2k views

Why are nested functions not supported by the C standard?

It doesn't seem like it would be too hard to implement in assembly. gcc also has a flag (-fnested-functions) to enable their use. thanks

1 3 4 5 6 7 35