The function-call tag has no wiki summary.
0
votes
1answer
77 views
Python function call at beginning of program
I am newer to python and believe there is a simple answer to this but can't seem to figure it out. Is there a way to do a function call at the beginning of this program. As you can see I am running ...
0
votes
0answers
48 views
Nullpointer Exception parameter passing [closed]
I am working on form. I am saving and retrieving the data from database. I succeeded in fetching data and showing it in Table. But I am unable to open that data. I have dynamically created the buttons ...
6
votes
2answers
108 views
Skip function if it takes too long
In Java I have a function that processes a text file in a certain way. However, if it takes too much time the process will most likely be useless (whatever the reason is) for that text file and I ...
0
votes
2answers
67 views
functions only returning 1?
I'm having an issue where my functions seems to be only returning one. I thought that I was returning the functions correctly but it seems that I am not.
char goAgain()
{
char ch;
do
{
...
5
votes
1answer
97 views
Perl function call confused me
A perl function call confused me, could anyone help me?
catFiles called like this:
catFiles( \@LINKFILES => "$output_prefix.links" );
catFiles function define:
sub catFiles {
...
2
votes
1answer
176 views
JSP - Call a function
I have a Button and a fuction which displays some data.
I want to call the fuction on button click. The data needs to be displayed on the same page. I dont want a page forward. And also want to avoid ...
0
votes
1answer
44 views
how do i make a call to a function with an Int list parameter in Scala?
I have a function signature like this:
def countChange(money: Int, coins: List[Int]): Int = {
and need to make a call to the function with parameters such as this: money = 4, coins = [1,2]
?
2
votes
3answers
66 views
Howto pass a function to a function in Python?
I am a beginner/intermediate in Python. I have coded a 4th-order Runge-Kutta method (RK4) into Python. It is basically solving a pendulum, but that is not the point here.
I want to improve the RK4 ...
0
votes
5answers
82 views
Heap Sort Error: expression must be a pointer to a complete object type?
I am implementing Heap Sort for an assignment. We have to do it the same way she did in class with her pseudocode, or else we dont get credit.
In my Max_Heapify function, im getting an error when I ...
-2
votes
3answers
51 views
Functions in different files not working properly
I made a program that calls this function. I know this because "Int Strength has been called" appears in the output box. However, it will not change the values that I tell it to do.
I want it to get ...
0
votes
2answers
115 views
Detect Non-Mutating Call Statements to Pure Functions in D
I believe D has the potential to add yet another cool feature to its suite of compilers, namely the power to disallow non-side-effect calls to pure functions.
For example
auto s = "a";
toStringz(a);
...
5
votes
3answers
120 views
Stumped by one line of Python
I'm unofficially doing a python course CS61A through Berkely, and I'm absolutely stumped by one simple assignment that requires me to provide only one expression at the very end of the provided ...
0
votes
1answer
122 views
HighCharts - How to combine JS and SQL for two charts?
I have two pie charts. First is working fine, I load the data from database in it. I had set a click event on it, which calls function, which contains code for the second chart. In the function I pass ...
0
votes
1answer
66 views
Visual Studio doesn't show my web service function summary as calling that function
I want to show my summaries when the function is getting called but I can not see however I wrote summaries. Here is my codes:
calling the webmethod:
webservice side:
0
votes
2answers
274 views
Using a .lib in visual studio 2012 (C++)
I have a .lib static library. I've linked it under the Linker settings 'Additional Library Directories', and 'Additional Dependencies', as well as using pragma comment (lib, "mylib").. And all of that ...
3
votes
3answers
60 views
on a fn call in c++, args are copied to the corresponding parameter. Is this initialization or assignment?
on a function call in c++, arguments are copied to the corresponding parameter. Is this initialization or assignment?
2
votes
4answers
327 views
Method in C++ to call a function every certain number of minutes
I'm using Visual Studio 2012 and C++, I need to call a function every 5 minutes, I've managed to do it but it consumes 25% of my CPU which is far from ideal.
The code is as follows,
time_t start;
...
0
votes
1answer
196 views
Calling a function in Bourne Shell
Is it possible to call a function (defined in a shell script) from Unix console? I have a function like
add ()
{
a=$1
b=$2
c=`expr $a + $b`
}
This is defined in the script "my_script.sh" . How ...
0
votes
3answers
176 views
Python - Split function call into function and arguments
Is it possible in Python to split a function call up into the function and a list of its arguments? For example, taking func(1,4,True) and turning it into [func, 1, 4, True] or something similar. ...
0
votes
5answers
82 views
Incorrect Output after Function Call
I expect the result is undefined or something, but the output is "10", why?
I suppose the memory is destroyed after the function gets called.
#include <iostream>
void f(int *p)
{
int l = ...
3
votes
3answers
119 views
Runtime Function Specifications Based on User Input [closed]
Ok, so it's been a while since I wrote anything big in c++ and I've grown used to some of the niceties of more modern languages. This is one that's been nagging at me and I'm sure there's an answer ...
0
votes
3answers
68 views
value not passing correctly to the function onClick
gameDesign = {
makeSeats: function( num ) { //num = number of seats
var seats = [];
...
2
votes
1answer
102 views
C - allocating values in an array of pointers in outside function
Lets say I have the following situation (some rough pseudocode):
struct {
int i;
} x
main(){
x** array = malloc(size of x pointer); // pointer to an array of pointers of type x
int* size = ...
0
votes
2answers
139 views
How to call a function in a loop
I need to call a function in a loop.
I have the following code....
do {
var name = prompt("Enter name:");
if (!isNaN(age) && name != null && name != "") {
names[i] = ...
0
votes
3answers
144 views
have function calls a perceptible overhead in C++?
In my project I have a class where execution time is the first goal. For it I don’t care much about maintenance, order and so on. At least I didn’t care till yesterday... Now I’m in situation where I ...
1
vote
0answers
171 views
Error when passing a std::list to a host function in a .cu file
I have written a CUDA-application with a rather large central .cu file and tried to split it up in smaller files. It worked well except for this strange error:
I have a class "SgmPath" that holds ...
1
vote
1answer
563 views
Error C3867: function call missing argument list
I'm trying to compile a code in Visual Studio, but I keep getting the following error:
Error 4 error C3867: 'MindSet::Form1::handleDataValueFunc': function call missing argument list; use ...
2
votes
2answers
267 views
php nested objects function call not working?
I have a PHP class that can contain an array of its own type this class has also a function called hatch() when I call it for one of the array items it gives me a message you can't call the function. ...
1
vote
3answers
107 views
How to call copy constructor from inside operator constructor correctly?
My code can also be found here.
This code would work (but there is much code duplication):
Employee::Employee(const Employee& x)
{
name=new char [strlen(x.name)+1];
strcpy(name, ...
32
votes
4answers
1k views
What's the use of multiple asterisks in the function call?
I can't think of any practical use of multiple asterisks in the function call:
void foo(int a, char b)
{
}
int main(void)
{
(**************foo)(45, 'c');
//or with pointer to function:
...
0
votes
0answers
41 views
Sketchup SDK Fill Function Call with PointArray stored in Heap rather than in stack
I need to use the Sketchup SDK Fill function for performance reasons.
It is defined like that:
virtual bool Fill(atlast::geometry::CPoint3d pnts[], int numPoints,
FaceDescriptor ...
0
votes
3answers
81 views
function caller invalid element
If I have :
<div id="mydiv" onmouseover="myfunc()">
<div id="mydiv1"></div>
<div id="mydiv2"></div>
</div>
<script>
function myfunc() {
var evt = ...
1
vote
2answers
111 views
If I have a variable, assigned to the value of a function call, can that variable be updated if the function call's parameters are changed?
If I have a function, like this:
function f(x,y){
return x + y;
}
And if I have variables of parameters I want passed to f:
var parameter1;
var parameter2;
If I assign this function call to a ...
2
votes
1answer
168 views
Assembler: “Function Call” assembler code produced by VC++
I am by all means no assembler expert, and my knowledge on this topic is rather shallow, but I was curious on what the Microsoft VC++ Compiler does in a simple function call that does nothing else but ...
0
votes
3answers
246 views
Call by value vs call by reference while dealing with binary tree
When we want to change the value of an ordinary variable by in a function we pass it using call by reference. But I am not able to understand the intricacies when we have to pass a pointer ...
1
vote
6answers
831 views
How to Call Function of one class on the object of another class?
How can I call one method in one class over using another class ?
I have ;
class A {
public :
foo ( ) ;
};
class B {
public :
bar ( ) ;
};
in main :
A data ; // I am creating ...
1
vote
5answers
574 views
Calling a function when page loads
My code
This is the code which I have written. The default function should be called when the page loads, without clicking any button. It should display some data and then two buttons should be ...
0
votes
1answer
384 views
Template function gives “no matching function for call” error
First question on stackoverflow :) I'm relatively new to C++, and have never used templates, so forgive me if I'm doing something silly. I have a template function that combs through a list and checks ...
0
votes
1answer
243 views
Ensure only one setTimeout runs (is active) at a time?
The recursive setTimeout function getRandomProducts is called onload in the html body tag, and so is constantly iterating.The function setCategoryTree is being called onclick from the links in a ...
2
votes
1answer
587 views
Calling Nt function from ntdll.dll in Win32 environment, C++
I want to call some Nt function from ntdll.dll, I'm doing that like this above.
For calling: NtTestAlert() , you need typical ntcall kernel routine, accessable via int 2Eh.
( from here I got Nt ...
0
votes
2answers
506 views
How to call function of one Activity from other Activity or service?
I need to call some functions from one activity. But when I do that, it gives null pointer... error.
I am using this as my example,
...
2
votes
2answers
163 views
Will this function call be optimized by g++?
I have the following situation:
void function(params)
{
#ifdef _MULTIPLAYER
if (isConnected)
{
if (isClient)
{
requestFunctionRemotely(params)
return;
}
...
0
votes
2answers
1k views
Calling JavaScript function in a .js file from Java
What is the best way to call a JavaScript function in a different .js file from a Java file?
Say, I have a String like so in a Java file:
String test = "[name1, name2, name2]";
What I am trying ...
6
votes
1answer
573 views
vim call function on a group in substitute string
how to call a function from the substitute string in vim? When i have:
%s/regex/string/g and i want the group as argument and replace it with the return value of the function:
%s/regex/call ...
1
vote
3answers
2k views
Calling a function through its address in memory in c / c++
Given knowledge of the prototype of a function and its address in memory, is it possible to call this function from another process or some piece of code that knows nothing but the prototype and ...
0
votes
4answers
1k views
How to use the javascript call method in jQuery?
Is it possible to use the call method of javascript (as described in the [mdn documentation])
in order to pass the argument this?
Having for example this code:
console.log(this);
...
27
votes
1answer
979 views
Why is 'X x; x();' allowed, when 'X' defines a conversion to function pointer, but not, when it defines a conversion to a functor?
void f(int){}
typedef void (*f_ptr)(int);
struct Functor{
void operator()(int){}
};
struct X{
operator f_ptr(){ return f; }
};
struct Y{
operator Functor(){ return Functor(); }
};
int ...
0
votes
2answers
849 views
How to fopen with name already in a array of strings
I am trying to find a way to use
FILE * fopen ( const char * filename, const char * mode ); but passing the filename indirectly. i would also like to know how to indirectly call a function with name ...
2
votes
1answer
291 views
How can i stop hearing mediaplayer on call?
I thought that android automatically stops sound from other sources than call . But i have seen in a program i'm developing that it only put it too low .
Anyway to solve this problem? Any OnCall ...
4
votes
3answers
344 views
How do I create an std::vector of functions without defining the functions explicitly?
I want to create an std::vector object (or any other standard or custom container type) with elements of custom and arbitrary functions whose signatures are all the same.
It should be something like ...




