The function-declaration tag has no wiki summary.
4
votes
3answers
104 views
Does this abuse of function declarations invoke undefined behavior?
Consider the following program:
int main()
{
int exit();
((void(*)())exit)(0);
}
As you can see, exit is declared with the wrong return type, but is never called with the incorrect function ...
0
votes
1answer
40 views
How are functions inside functions called? And can I access those functions or they work like “helper methods”?
I'm studying Python through The Python Tutorial and I'm currently at Classes (chapter 9), but during the explanation of "scopes and namespaces" I got a question.
The author give this example:
def ...
3
votes
3answers
68 views
When using PInvoke, why use __stdcall?
I have been using PInvoke to let my C# application call C++ functions I wrote.
Now, I keep hearing everywhere and beyond that I need to define those externally accessible functions with the __stdcall ...
1
vote
2answers
131 views
Can C++ inline function call function declared later in the header?
The following works just-fine in MSVC2008 and MSVC2010:
class Foo {
public:
static void FuncA(void) {
FuncB(); // "FuncB()" NOT DECLARED YET? WORKS, MSVC2008
}
static void FuncB(void);
};
...
0
votes
3answers
56 views
How to distinguishe declaration and use of a function?
I have the following structure in the code:
while (x > 0) {
something;
aaa::bbb::ccc some_name(
x,
y
);
}
I cannot understand what aaa::bbb::ccc some_name(. If it ...
4
votes
3answers
108 views
struct in separate header file causing problems in C++
I have a struct Tree that is defined inside Class Parser. I have methods defined in Parser that take Tree as input.
void Parser::InputTree(const Tree& input) {
//uses data from Tree
}
...
-3
votes
4answers
184 views
Pointer to void as an argument in a function with no prototype for variable number of arguments
Say I have a function that should accept any number of parameters, so what im coing here is declaring no prototype, and letting the function to be created when it is called in the code. I am using a ...
1
vote
3answers
73 views
c++ class with constructor definition but no code where it is implemented?
I have the following class in a single .h file:
class MyClass
{
protected:
MyClass();
~MyClass();
private:
MyClass(const MyClass&);
MyClass& operator=(const MyClass&);
};
...
3
votes
4answers
113 views
How does ampersand in the return type of a function declaration work? [duplicate]
In this piece of code, why f() is declared as "double & f(..."? What does it mean and how does it work? I don't even know what to google to find the answer to my question. Please help.
double a = ...
2
votes
2answers
37 views
Are all function declarations & expressions created by called new Function() behind the scenes?
I'm reading the portion of ECMA 262 v5 script that speaks of Function definitions. For both function declarations and function expressions, the following is mentioned:
Return the result of ...
-2
votes
2answers
55 views
The meaning of template keyword in the function declaration
What has the meaning the "using of template keyword in the function declaration"?
In this example compiler errors with error: "func" is not a template function.
template<typename T>
struct ...
1
vote
1answer
62 views
equation in function declaration
In C++ (Microsoft Visual Studio), I have: main_savitch_4::string::string(const char str[ ] = "") in mystring.h and added to in mystring.cpp:
main_savitch_4::string::string(const char str[ ] = ""){
...
0
votes
0answers
52 views
JavaParser (Japa) - set Annotation to method
I am using Java Parser (AKA Japa)
Java 1.5 Parser and AST 1.0.8 API
I am using it generate code, how do I add annotations to MethodDeclaration ? (In the below example : @Test)
@Test
@TestProperties ...
0
votes
2answers
62 views
Function declaration with ternary operator
Is it possible to use a ternary operator to declare the function name?
var foo,
bar = 'bar';
(foo || bar) = function(){ // Invalid left-hand side in assignment [Bad assignment]
alert(true);
...
4
votes
2answers
104 views
Local function declaration inside namespace
In such a situation
namespace n {
void f() {
void another_function();
}
}
Should the function another_function be defined inside the namespace n or outside? VS 2012 (with the ...
5
votes
3answers
165 views
Alternative function syntax difference
What's the difference between these two functions?
auto func(int a, int b) -> int;
int func(int a, int b);
0
votes
1answer
60 views
Reference both earlier and later functions from other functions?
I've got a Lua script that presents an interactive text menu for configuring the script before actually doing the work. There is a main_menu() function, which has options the user can select, each of ...
6
votes
1answer
78 views
Function declaration or function expression
I just ran into a problem when defining a function in a block scope. Consider the following program:
try {
greet();
function greet() {
alert("Merry Christmas!");
}
} catch ...
-2
votes
2answers
115 views
How to pass a pointer as an array argument? [closed]
I have a third-party library, which has a function delared as follows:
void foo(const void* input, char output[1024]);
If I write something like this:
char* input = "Hello";
char output[1024];
...
3
votes
0answers
57 views
Should the trailing return type syntax be the default syntax for all functions? [duplicate]
Possible Duplicate:
alternative function syntax
In complicated function templates, you sometimes need the C++11 trailing return type syntax in order to use decltype on parameters, which ...
4
votes
3answers
75 views
letting a java function accept a collection or an array
I am trying to write a function that takes some strings and does something with them.
The only thing I'm going to do that the set of strings is loop over them. Right now I end up with an awkward ...
2
votes
1answer
63 views
How do you declare a function with definition func(cv::Mat &img) in C++
How do you declare a function defined as such:
void func(cv::Mat &img)
{
...
}
More details:
I defined the function "func" in my main.cpp file below the "main" function. The compiler ...
0
votes
2answers
110 views
error C4430, C2143, and C2244 for a function in my template class
I'm trying to make a function that takes a templated type and adds it to the end of the list/array and I'm running into an error that I can't seem to find a way around. I'm new to templates so I'm not ...
0
votes
1answer
99 views
C++ member function not declared error, when it appears to be
I receive the errors:
cs163hw1.cpp:41:24: error: no ‘int menutype::run_prog()’ member function declared in class ‘menutype’
and
main.cpp:18:7: error: ‘struct menutype’ has no member named ...
1
vote
1answer
50 views
All function expressions suddenly arent recognized as functions
I have a massive javascript file with many function expressions. All of a sudden console gives me the following errors:
In IE
The value of the property 'myFunc' is null or undefined, not a Function ...
0
votes
4answers
115 views
Why am I recieving a type error?
In Haskell, I am having some problems defining functions because the types of my argument does not match the required type.
For example, I would like to write a function that takes an n :: Int and ...
1
vote
0answers
64 views
Reliably navigating to correct function definition with tags in Emacs
So I've been using Exuberant ctags with Emacs to navigate my way around a Linux kernel driver I'm trying to understand. I just spent a day debugging a problem which boiled down to me reading the ...
0
votes
2answers
49 views
Determine if JavaScript code is an expression
I'm using the following function named isExpression to determine whether some JavaScript code is an expression:
function isExpression(code) {
try {
new Function("return " + code);
...
6
votes
3answers
254 views
Finding out which functions are called within a given function [duplicate]
Possible Duplicate:
Generating a Call Graph in R
I'd like to systematically analyze a given function to find out which other functions are called within that very function. If possible, ...
1
vote
3answers
580 views
conflicting types vs incompatible implicit declaration
The related C program is below:
#include <stdio.h>
void testifbarisvisible();
int main()
{
void bar(int);
bar(1);
testifbarisvisible();
}
...
2
votes
7answers
182 views
Difference between two Java function declarations
I was reading Hadoop documentation when I came across two function declarations returning a reference to an abstract class:
public FSDataInputStream open(Path f) throws IOException
public abstract ...
3
votes
2answers
56 views
Why would I assign a function declaration to a named variable?
Edit: it's NOT an assignment of a function declaration to a named variable - check the accepted answer. Leaving title as it is because other people might make the same error as me.
While reading ...
0
votes
1answer
106 views
How to access C function from another C funtion in iOS
I'm trying to assign a function to the AURenderCallback inputProc
int setupRemoteIO(audio unit etc){
inProc.inputProc = playerCallback
}
but it says that playerCallback is not declared in ...
4
votes
2answers
151 views
Function arguments: upper bound vs parent class as argument?
Consider we have:
abstract class FlyingObject;
case class Rocket(name: String) extends FlyingObject;
what is difference between those two function declarations:
def launch[T <: ...
4
votes
5answers
433 views
extern declaration and function definition both in the same file
I was just browsing through gcc source files. In gcc.c, I found something like
extern int main (int, char **);
int
main (int argc, char **argv)
{
Now my doubt is extern is to tell the compiler ...
1
vote
3answers
131 views
Javascript: explain the meaning of :Number after a function declaration?
Remark from editor: Op miss-classified actionscript as javascript.
I am new to Javascript and am confused by the following function declarations in ECMAScript.js2.
public class String extends Object ...
6
votes
1answer
138 views
Please help me understand this C++ parameter declaration with an argument
I use the ROOT C++ libraries (root.cern.ch) daily and was browsing the source when I came across this function declaration:
TString TString::Format(const char *va_(fmt), ...)
{
//etc.
It can be ...
6
votes
4answers
210 views
C++ declares a function instead of calling a complex constructor
First of, I know there are similar questions already on stackoverflow (this, this and this one) and that is why I understand the why of my problem. Unfortunately, that doesn't help me to solve it.
...
1
vote
2answers
220 views
How do browsers handle multiple function declarations with the same name?
How do browsers handle multiple function declarations with the same name?
Specific test case is below - NOTE: I know this does not make sense to allow a server script to create more than one function ...
1
vote
4answers
128 views
position of virtual keyword in function declaration
Does it make any difference whether I place the virtual keyword in a function declaration before or after the return value type?
virtual void DoSomething() = 0;
void virtual DoSomething() = 0;
...
1
vote
1answer
51 views
How to call a function with this parameter: fun(Ty param[NUM])?
In an API header file I found a strange function declaration:
void API_GetParameter(API_SOMESTRUCT param[API_NUM_CONST]);
where API_NUM_CONST is an enum value and API_SOMESTRUCT is a struct, so my ...
0
votes
5answers
542 views
Does C support optional null parameters?
In Python, I'm used to things like
def send_command(command, modifier = None):
and then the modifier argument is optional, and the absence of the argument can be differentiated from an argument of ...
0
votes
0answers
64 views
K&R C function declarations [duplicate]
Possible Duplicate:
What is useful about this C syntax?
Reading the Small-C handbook, I've found functions were declared in a funny manner,
main(argc, argv) int argc, *argv; {
....
...
-3
votes
4answers
336 views
Is there a better way to write a C# function that accepts multiple types?
Some context: I'd like to write a class where the main method for adding things to a collection is through a method (or methods) that are named Add (or something like that). And so the signature that ...
3
votes
3answers
159 views
Explain the difference in these function pointer declarations
Please highlight the difference between the following function declarations:
void (*p) (void *a[], int n)
void *(*p[]) (void *a, int n)
2
votes
4answers
947 views
Inline function prototype vs regular declaration vs prototype
What's the difference between inline function and then main like so:
inline double cube(double side)
{
return side * side * side;
}
int main( )
{
cube(5);
}
vs just declaring a function ...
3
votes
6answers
892 views
C++ void function declarations [duplicate]
Possible Duplicate:
C++ Why put void in params?
What's the difference between these two declarations and which is used more commonly?
void function1();
and
void function2( void );
0
votes
5answers
118 views
Javascript - use a variable's value (directly, not by reference) when declaring an asynchronous function
Alright so,
I have something that looks like this :
for (j = 0; j < btnArr.length; j++)
{
var btn = document.createElement("button");
btn.addEventListener("click", function() { ...
1
vote
2answers
145 views
The use of declaring function inside a function? [duplicate]
Possible Duplicate:
Is there a use for function declarations inside functions?
I know that inside function we can declare a function. What is the use of it? Can you please bring a simple ...
4
votes
2answers
708 views
OCaml: Declaring a function before defining it
Is there a way to declare a function before defining it in OCaml? I'm using an OCaml interpreter.
I have two functions:
let myFunctionA =
(* some stuff here..... *) myFunctionB (*some stuff *)
...

