Tagged Questions
The function-prototypes tag has no wiki summary.
15
votes
3answers
241 views
Put name of parameters in C function prototypes?
When declaring functions in C, you should set a prototype in which you do not need to write the name of parameters. Just with its type is enough.
void foo(int, char);
My question is, is it a ...
14
votes
6answers
1k views
Write the prototype for a C function that takes an array of exactly 16 integers
One of the interview questions asked me to "write the prototype for a C function that takes an array of exactly 16 integers" and I was wondering what it could be? Maybe a function declaration like ...
10
votes
5answers
995 views
Javascript prototype operator performance: saves memory, but is it faster?
I read here (Douglas Crockford) using prototype operator to add methods to Javascript classes saves also memory.
Then I read in this John Resig's article "Instantiating a function with a bunch of ...
9
votes
8answers
333 views
How to set the prototype of a JavaScript object that has already been instantiated?
Suppose I have an object foo in my JavaScript code. foo is a complex object and it is generated somewhere else. How can I change the prototype of the foo object?
Update: I realize that I need to ...
6
votes
1answer
733 views
“Error calling method on NPObject!” in Uploadify
I'm using Uploadify to upload file in my CMS. Everything works fine until recently. I got an error
Error calling method on NPObject
on this line
document.getElementById(jQuery(this).attr('id') + ...
5
votes
5answers
92 views
Terminology: Forward Declaration versus Function Prototype
To me these terms are essentially synonymous when using the C programming language. In practice I might prefer "forward declaration" for in-file prototypes versus "function prototype" for prototypes ...
5
votes
4answers
113 views
Problem extending class with javascript object prototype
I have got this problem... B is a base class, and A is a derived class... Event though A is derived from B, various objects of A points to the same object of B.
I know i have assigned an object of B ...
5
votes
4answers
354 views
C prototype functions
As a beginner to C, I can understand the need for function prototypes in the file, but am unsure of a couple things.
First, does every function call outside of the main require a prototype ...
5
votes
5answers
283 views
Javascript when to use prototypes
I'd like to understand when it is appropriate to use prototype methods in js. Should they always be used (or are there cases where using them is not preferred and/or incurs a performance penalty)? ...
4
votes
3answers
99 views
Why prototype is required even without any class declaration?
If I just do it:
Ex1:
#include <iostream>
int main()
{
//try to call doSomething function
doSomething();
}
void doSomething()
{
std::cout << "Call me now!" << ...
3
votes
2answers
232 views
c++0x: proper way to receive a lambda as parameter by reference
what is the right way to define a function that receives a int->int lambda parameter by reference?
void f(std::function< int(int) >& lambda);
or
void f(auto& lambda);
i'm not sure ...
3
votes
4answers
240 views
Strange behavior of float in function definition. And declaration-definition mismatch, yet it works, how?
How does the following code work even though the signature of the function in the declaration doesn't match with the definition? The function declaration has empty parameter list, yet the definition ...
3
votes
1answer
65 views
JavaScript prototype of function not working properly
I`ve made a prototype for "between" function.
Why I can't use it directly on number? It is Number object whatsoever!
var a = 21;
21.between("( 16 20 ]"); // this is wrong and not working
//alert ( ...
3
votes
1answer
98 views
How to make short name to an Array property
I often have typos in typing word "length" and would like to make a short name to this property. For example "len"
I can easily make an Array method:
Array.prototype.len = function(){ return ...
3
votes
8answers
3k 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 ...
3
votes
5answers
666 views
Any way in C++ to forward declare a function prototype?
I make regular use of forward class declarations and pointers to such classes.
I now have a need to pass a function pointer through a number of layers. I would prefer to include the header that ...
3
votes
3answers
294 views
The behavior of a C compiler with old-styled functions without prototypes
When my program consists of two files:
main.c
#include <stdio.h>
int main(void) {
printf("%lf\n",f());
return 0;
}
func.c
double f(int a) {
return 1;
}
compiler do not ...
3
votes
6answers
497 views
What are the valid signatures for C's main() function?
What really are the valid signatures for main function in C? I know:
int main(int argc, char *argv[])
Are there other valid ones?
2
votes
4answers
104 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 ...
2
votes
2answers
88 views
“Faking” a JavaScript Constructor [closed]
Context
I am working on improving my JavaScript skills and I'm learning more about prototyping. I want to better understand the code in this question and any limitations or problems with it.
One ...
2
votes
2answers
209 views
Javascript namespace declaration with function-prototype
I know, this is often discussed. But after searching around like someone out of the 19th century, I need some advice. I have no problem by declaring a "namespace", but when it comes to a prototype.foo ...
2
votes
4answers
101 views
= operator in function prototype [closed]
Possible Duplicate:
Pure virtual functions may not have an inline definition. Why?
I've come accross a function prototype that looks like this:
virtual void functionName(const int x) = ...
2
votes
2answers
160 views
Javascript Callable and prototype extendable Function
Basically I looking for the ability to attach methods to an executable function while using the javascript prototype method. The code below demonstrates want I'm talking about and the functionality ...
2
votes
2answers
62 views
Does returned struct of localtime() need to be freed?
struct tm *localtime(const time_t *timep);
I checked man localtime but there's no words on whether it's my duty to clean it after using.
And in fact I have many similar doubts on functions ...
2
votes
2answers
153 views
Define a function, extend the functions prototype, create two instances, prototype was modified?
Can someone please educate me on why the result is what it is, instead of what I expected it to be. This is driving me nuts!
var f = function(b){
console.log(this.config);
this.config.b = b;
...
2
votes
5answers
497 views
Why do function prototypes include parameter names when they're not required?
I always thought that a function prototype must contain the parameters of the function and their names. However, I just tried this out:
int add(int,int);
int main()
{
std::cout << add(3,1) ...
2
votes
4answers
221 views
Declare main prototype
Is there any reason why I never see main's prototype declared in C programs, ie:
int main(int argc, char* argv[]);
int main(int argc, char* argv[])
{
return 0;
}
Always seemed inconsistent..
2
votes
5answers
297 views
What's the point of function prototyping?
I'm following a guide to learn curses, and all of the C code within prototypes functions before main(), then defines them afterward. In my C++ learnings, I had heard about function prototyping but ...
2
votes
2answers
100 views
Javascript: prototype method error?
I am getting a "TestFunc is not defined" error when this bit of code...
/* my_object.js */
"use strict";
function MyObject (param) {
this.param = param;
}
MyObject.prototype.TestFunc = function ...
2
votes
3answers
141 views
Passing parameters to a prototyped function in javascript
I've been recently experimenting with prototyping in javascript and I can't figure out why the following code doesn't work. What I would like to do is create a new instance of cheese with parameter n.
...
1
vote
3answers
52 views
Passing a prototype's function as parameter without loosing the 'this' context in Javascript
I'm defining a 'class' in javascript by means of prototype.
The first time func() runs, it works, but when it's called the second time, through a setTimeout, it fails because this time it has lost ...
1
vote
2answers
63 views
Is it legal to put function prototypes inside of main or another function?
In the C++ language, is it legal to put function prototypes inside of main or another function? Is this bad practice? Why would someone put prototypes inside of main?
1
vote
1answer
77 views
Prototype injection, google maps api
I need to catch the event of getting back suggestions for google maps autocomplete. I know it is undocumented, but doing some research I found that it could be down via some prototype hacking.
...
1
vote
3answers
78 views
What should be my virtual function's prototype?
Let's say I have an abstract base class Base with a virtual function doSomething()
There are two derived classes, one of which takes no parameters in doSomething() while the other takes a structure ...
1
vote
4answers
49 views
JS function given to Array.prototype seen as array property
Array.prototype.testi = function() {console.log('hep');}
var b = new Array();
b.push(1, 5, 'b', 'c');
for (var i in b) {
console.log(b[i]);
}
This will log (in chrome)
1
2
b
c
function () ...
1
vote
1answer
32 views
Should you be creating an object in a jQuery wrapper, or is it bad practice? (example inside)
I'm trying to better understand prototypes in JavaScript, so it made sense to me to make an object inside a jQuery function to make use prototype functions. As I understand it, this would be more ...
1
vote
2answers
67 views
javascript reflection to find prototype methods, global scope methods and objects
How can I find the prototype methods (not PrototypeJS) that have been defined using reflection? Also, how to find all defined objects and methods in the global scope?
1
vote
1answer
127 views
multiple inheritance question
I'm messing around with the prototype chain and noticed something I can't explain. I'm still learning all of this, so it's probably a mistake i've made. I'm trying to do some multi-inheritance, like ...
1
vote
6answers
148 views
Understanding Function Prototypes in C
1)The code below :
a)
void main()
{
float x;
fun(x,x,x);
}
fun(float x,float x){}
doesn't perhaps work because the actual argument is promoted to double ,which doesnt match the function ...
1
vote
4answers
186 views
scandir match function arguments
I am using scandir to match certain files from a dir. The match function takes const struct dirent *dp argument.
But I also need to pass another argument with it. When I try to do that, compiles ...
1
vote
2answers
356 views
NodeJS Module.Exports Object Prototype Problem
I'm just barely getting into NodeJS a bit and have hit a snag trying to create a (VERY)basic MVC implementation for it.
It comes down to the following. I have a main object for a Controller that I'm ...
1
vote
3answers
584 views
What's the difference between function prototype and declaration?
I thought the difference is that declaration doesn't have parameter types..
But this works:
int fuc();
int fuc(int i)
{
printf("%d",i);
return 0;
}
this fails compiling:
int fuc();
int ...
1
vote
3answers
189 views
Javascript extending types return question
i'm actually studying Crockford's Javascript: the good parts. I am new to JavaScript so i'm having a difficult time to understand how this code works:
Function.prototype.method = function (name, ...
1
vote
7answers
1k views
Extracting C / C++ function prototypes
I want to do this:
extract_prototypes file1.c file2.cpp file3.c
and have whatever script/program print a nice list of function prototypes for all functions defined in the given C / C++ files. It ...
0
votes
1answer
15 views
function prototype with multiple parameters including void
I have a piece of software in which there is a function ie:
void function_name(structure_t *param1, void *param2){code....}
I am trying to create a function prototype for this function so it can be ...
0
votes
1answer
147 views
Objective C - No previous prototype for function
I have 2 methods that are giving me a warning:
id LoadObjectFromFile(NSString* filename) {
if ((filename = DocumentPath(filename, NO))) {
return [NSKeyedUnarchiver ...
0
votes
3answers
60 views
How to best fix both warnings(old style c-function declaration isn't a prototype)
I was fixing some functions in a piece of someone else code that included a number of functions that took no arguments.
They were declared as
return_type_t func();
instead of
return_type_t ...
0
votes
3answers
106 views
Calling a C Function without Prototype
I have a C file (say file1.c) that calls a function
fun1(1,b).
This function fun1(int a,int b) resides in another C file (say file2.c) but its prototype is not included in the header file (say ...
0
votes
1answer
22 views
Difference between ctypes' use_errno parameter to shared library classes and function prototypes?
The shared library classes CDLL, OleDLL, WinDLL each take the use_errno parameter. So do the function prototypes, CFUNCTYPE, WINFUNCTYPE. When and to which group do I pass use_errno=True and why?
0
votes
1answer
38 views
Risk of using native Array prototype method on other objects?
I have made a lot of jQuery special events, and now i trying to make them to jQuery plugins.
My code is:
$.each("down move hold up tap swipeUp swipeDown swipeLeft swipeRight drag dragCell".split(" ...