Tagged Questions
0
votes
3answers
45 views
Adding a method to Java class in different file without extending the class
package com.companyxyz.api.person;
public class Man {
public var1;
public var2;
...
private static void createAuth() {
...
}
// public methods go here
...
}
I want ...
0
votes
5answers
43 views
Issue with if /elseif /else [closed]
I am creating a whitelist if you will for a user to input data. I am getting stuck on the elseif statements.
This is my code :
public function is_valid_data($data)
{
if(strlen($data > ...
1
vote
4answers
46 views
Is there an accepted way to omit a parameter from a function/method?
Let's say (hypothetically) I have an object constructor MyObj, which has a method like this:
MyObj.prototype.method = function(x, y){
x = x || this.x; //default value
y = y || this.y;
}
...
1
vote
2answers
24 views
JavaScript calls to methods from within constructors
I was reading the re-introduction to JavaScript on MDN website and came across this in the Custom Objects section:
function personFullName() {
return this.first + ' ' + this.last;
}
function ...
0
votes
2answers
61 views
Instance methods [closed]
........................................................................................................................
-2
votes
2answers
93 views
.after() jQuery method in native JavaScript? [duplicate]
I need to write the following jQuery code in native Javascript:
$("a[href $= pdf]").after("<img src='images/small_pdf_icon.gif' align='center' />");
And here's my HTML :
<ul ...
0
votes
2answers
44 views
Making a function with a random name and calling it later
So I'm trying to make a function that will have a random name generated on page load, but I'm having problems calling the method later.
This is what I got so far:
var methodName = ...
2
votes
1answer
59 views
How to timeout for a Public method in Java?
I've searched for a while but I didn't found a concrete unique solution for this problem, some use function methods like .setTimeout(...) or so, but I just want to set timeout to one of public methods ...
-1
votes
0answers
23 views
How to access the value of a private variable on another function?
a = open('expressoes.txt', 'r')
pilhaop = []
b = a.readlines()
string = []
def posfixa():
j = 0
while j in range(len(b)):
fixa = b[j].strip()
print fixa
...
0
votes
3answers
92 views
Functions Error C#?
I have two user defined functions (WriteFunction) and (ReadFunction), There is an error in the second function (ReadFunction) which is The keyword does not exist in the current context. (underlining ...
3
votes
4answers
159 views
Java's methods vs. functions [duplicate]
I just decided to integrate my MATLAB programming skills with some more consistent and rigorous Java coding. Therefore I hope it's not gonna be a too naive question.
I'd like knowing if there is any ...
-1
votes
2answers
72 views
How to call function within java-script object [closed]
Not sure if I am doing this correctly but I am trying to teach myself how to use javascript objects. This is smaller example of what I am currently doing.
var site = {
account:{
...
-1
votes
2answers
65 views
Understanding Classes and Methods in Python 3
Alright, after viewing a lot of tutorial videos about classes i'm still having trouble understanding them for this assignment i have to do.
I need to write a program that essentially does high card, ...
1
vote
3answers
57 views
Calling a method inside another method of same class
I admittedly know little javascript, jquery, or oop, but I know enough to piece things together and sometimes get them to work. This however is over my head, and despite what I google I can't make ...
0
votes
1answer
24 views
get value of function during debug xcode
I am new to xcode/ios development. I need to know can we get the value of a function during debug process? Like
[super getUserName];
In eclipse we can get the return value by selecting the text ...
4
votes
1answer
85 views
Methods in Enums [duplicate]
So I am confused on if in Java enums can have functions. I am making a simple html editor and wanted to use enums to represent the html tags, yes I know this is not the best way to go about it but its ...
0
votes
1answer
75 views
I can't start method when using DateTime
I have some problem with my code...
I can't see the messagebox when the datetime is initialized.
What is wrong with the code? I can't find any errors at all.
I'm using a WPF modified application that ...
0
votes
2answers
77 views
How to read from string?
I'm trying to learn how to schedule pictures depending on what time a user has selected.
Here is code with questions:
private void startjob()
{
string theDate = ...
0
votes
1answer
56 views
PHP get assigned variable name inside anonymous function
I know you can find the method name inside a declared method such as:
function getFunction() {
return __METHOD__;
}
echo getFunction(); // 'getFunction'
But how do you find the variable name of ...
-1
votes
2answers
35 views
Updating Python Script with Updated Method?
I have borrowed a python plugin for an application I am using. The plugin is somewhat outdated in that a method used in script has been changed and I want to try to figure out how to edit the script ...
1
vote
2answers
55 views
Similar method in ObjectiveC for 'java.lang.Class.getDeclaredField()' [duplicate]
I am reading a text file. I want to check whether there is a variable declared in the class with name same as the text that I read from the file.
Method for this in java is ...
-3
votes
2answers
66 views
how to define a class with an instance variable and methods to make it alternate between two values, and to modify it
I am trying to define a class that I could use for my board game.
I think I will use the accesor method(getTurn()) as my argument to the board game class.
When the game starts, it should give ...
1
vote
3answers
65 views
jQuery .append is occurring multiple times. How do I prevent this?
I looked at some similar posts, but haven't found the solution I'm looking for. I am attempting to append div#dropdownmenu only once. However, it continues to occur as I hover over the div. Any ...
1
vote
5answers
106 views
How to pass method of a class into another function in C++?
Say I have a class and a function
class A
{
int a;
int b;
void mul();
};
...
void func(int af, int bf, void (*fc)())
{
...
}
In the main function, the function is supposed to use ...
1
vote
1answer
46 views
Python, how to keep a non-class method as non-class method?
I am making a set of classes that call functions that were defined in a different module. To know which function they must call, the function is stored as a variable of the class (or at least that ...
0
votes
2answers
42 views
Single vs multiple functions [closed]
I'm developing a model for a MVC project I'm working on. I was wondering though if it's better to have multiple functions for a task or a single function for each way it can be handled. For example, ...
0
votes
2answers
37 views
C# Acces functions within methods
I've created a method in a class and i want to acces the streamreader sr1 from another method within the same class but i can't seem to get acces to the method!
public void showSelectedFile()
{
...
0
votes
1answer
118 views
XCode IOS method input from const unsigned char for an array
Currently I have a number of instance methods for generating some data that I would like to change for a single method that takes an input which I pass to it, the compiler is telling me that the array ...
0
votes
1answer
15 views
jquery plug-in inner workings
How come, if I define jQuery.fn.my_method = function(){...}, jQuery.my_method is not undefined even though I put my_method under the .fn property and not under jQuery directly?
I'm just curious.
...
2
votes
2answers
39 views
Javascript Passing a method of an object as a function
Today I found out a rather strange behaviour that happens when you pass the method of an object as a function in Javascript.
setTimeout(myObject.test, 100); // "this" is the global object window
...
3
votes
1answer
68 views
functions accessible by multiple php classes (Symfony controllers)
I have a couple functions that are used in multiple controllers in my Symfony project. Instead of copy and pasting them constantly, I'd like to have a separate php file (say functions.php) to store ...
0
votes
2answers
87 views
I am trying to reverse a two dimensional array and keep getting a null exception
Here is my method that is suppose to reverse the array.
(Also, keep in mind that this method can receive a jagged array)
public static int[][] reverse(int[][]a){
int[][] rev = new ...
0
votes
1answer
14 views
Workaround of aplying a method to an object so method can acces “this” keyword as the object
Sorry but I don't know how to ask this question... I'm going to explain it.
I have this code:
function jclass_getVar() {
return this.myvar;
}
function jclass() {
this.myvar = "ok";
...
-2
votes
7answers
164 views
PHP call Class method / function
How can I call following Class method or function?
Let say I have this params get from url:
$var = filter($_GET['params']);
Class:
class Functions{
public function filter($data){
...
-1
votes
1answer
78 views
Four same ways of writing a method/function in C++?
Can you please tell me what these four are (methods or functions) and if they do the same thing. The first code is the class declaration, and the second code is implementation outside of the class:
...
0
votes
1answer
64 views
How to change syntax for calling functions in python?
Functions are often applied to arguments in this way: func(arg). However, if argument is very long (for example a combination of other functions), the code is more readable if the following syntax is ...
4
votes
3answers
116 views
Generalizing actions for a binary tree traversal?
I'm trying to find a way that I could take a binary tree class and traverse through its nodes, performing X amount of inline actions on each node without having to rewrite the same traversal code over ...
2
votes
4answers
74 views
Method vs Functions, and other questions
With respect to JS, what's the difference between the two? I know methods are associated with objects, but am confused what's the purpose of functions? How does the syntax of each of them differ?
...
1
vote
1answer
76 views
Android - crashes when calling objects
I have a working code now with my thesis but I decided to clean it up using functions/methods/objects (not really sure what to call them) but after organizing them, my app crashes everytime i start ...
0
votes
3answers
123 views
Call method c# with object sender and EventArgs
How can I call the following method manual?
private void NetworkResponseReceived(object sender, Network.ResponseReceivedEventArgs e)
{
ExecuteTask();
}
with something like:
...
0
votes
2answers
34 views
Call a recursive “method of a class” from a different “method of the same class”
I asked this question before, and someone put a link to explain me what a recursive function is. He/She voted negative and so on, like in a real recursive function, all others voted me negative too.
...
4
votes
3answers
193 views
Are functions only in non-object-oriented languages? [duplicate]
I was asked to answer this question:
Where should I put the Javadoc specific comment notation of /** and */
if I want to tell the user specifics about a certain instance variable
or method?
...
0
votes
1answer
60 views
Do long and heavily implemented functions ever fit into an “effective model”? [closed]
I know that the accepted model is that functions should be very brief, concise, and "do one thing," and the majority of implementation code is to be handled in a single "meta" document class. This ...
2
votes
3answers
205 views
Method call with Generic return type in Java
In C++ you can specify the return type of a function in a parameter, such as:
C++
float* myFloat = CollectionClass.ptr<float>();
int* myFloat = CollectionClass.ptr<int>();
Is ...
0
votes
2answers
205 views
Difference between function, method, procedure, subroutine [closed]
I checked this.
In objective-c we say all as method irrespective of return value or not, on top of these we have Blocks.
So, why we refer with so many names, when it is almost similar in work?
0
votes
0answers
49 views
Infowindow help on google maps api 3 2
i m able to create polyline but not able to create infowindow for polyline when i m clicking on it ....pls help me to do right program..this is my polyline code using xml ....any one help me ...
1
vote
3answers
107 views
Function type of all methods of a single class - in Scala
Not sure how to properly formulate this (hence, how to look it up), but here goes:
I understand how a method applied to an object can become a function object. For example:
case class User(name: ...
0
votes
1answer
64 views
Decorating a function with a method (with arbitrary arguments)
References
Before writing this question, I have referred some of the following interesting questions and feel that this scenario is not explained/covered:
Understanding Python decorators ...
2
votes
1answer
58 views
python beginner : better to make a method or a function
i have a class that will make multiple instances. whats the difference between making a method and calling that method versus making a class and a function then using that function on the class? Does ...
-1
votes
3answers
60 views
How to use pointer to method as a parameter (when pointer to function is required)? [duplicate]
I have some 3rd-part code:
class A(){
public:
void assingOnClickFunction(void (*function)();
};
I cannot change anything in that code.
I want to pass to that A::assingOnClickFunction() ...







