Top "Call" questions

Do not use this ambiguous tag.

java how expensive is a method call

I'm a beginner and I've always read that it's bad to repeat code. However, it seems that in order to …

java performance methods call
keeping variable alive in a javascript function

I want to house a variable in a function This variable will change state depending on user interaction function plan_…

javascript function variables call
How do I trace methods calls in Java?

Consider the two simple Java classes below: First Example class Computer { Computer() { System.out.println("Constructor of Computer class."); } void …

java methods call trace
Bind more arguments of an already bound function in Javascript

I try to sort my thoughts about how javascript's bind() works. I see that if I do var f = function (…

javascript call bind
Calling R script from python using rpy2

I'm very new to rpy2, as well as R. I basically have a R script, script.R, which contains functions, …

python r call rpy2
Mysql: How to call sql script file from other sql script file?

Suppose I have wrote script Table_ABC.sql which creates table ABC. I have created many such scripts for each …

sql mysql file call sql-scripts
Start an Activity from another Activity on Xamarin Android

I found this java code to create a generic method to start any activity from other activity. public void gotoActivity(…

android android-activity xamarin call
Oracle SQL Stored Procedures Call vs. Execute

Problem I'm trying to understand the difference between Oracle SQL commands CALL and EXECUTE. I've been using CALL to kick …

sql oracle stored-procedures call execute
Should I use Call keyword in VB/VBA?

I use the Call keyword when calling subs in VB/VBA. I know it's optional, but is it better to …

vb.net vba vb6 call
Substitutes for x86 assembly 'call' instruction?

What are some alternatives to the x86 call instruction? Maybe something like a push of the return address then a …

assembly x86 call