A method is code that performs a task and is associated with a class or an object.

learn more… | top users | synonyms (1)

0
votes
0answers
8 views

override moveTo and moveByPx methods of OpenLayers.Map

How to override moveTo and moveByPx methods of OpenLayers.Map for eliminate "movestart" event triggering for any actions except zooming ?
0
votes
0answers
8 views

Method/function return type in call stack

I was trying to find the existence of return type constraint in method call stack. Event any language you use, (java / c++), we specify the return type of method/function. When this method enters into ...
-2
votes
4answers
46 views

Problems adding objects from a different class into an Arraylist - java

I'm working on a project where i have 3 different classes creating objects CommissionEmployee, SalariedEmployee and HourlyEmployee. I need to add these to an arraylist in the main class, but not sure ...
0
votes
2answers
65 views

Call Objective-C Method

How would I call this method, - (void)displayView:(UIView *)view arg:(UILabel *)label { } after a delay of .5 seconds? I have tried [self performSelector:@selector(displayView:) withObject:view ...
3
votes
3answers
45 views

Synchronized statements and separate unsynchronized methods

On the Java documentation online I found the following example: public void addName(String name) { synchronized(this) { lastName = name; nameCount++; } nameList.add(name); ...
0
votes
2answers
18 views

java.lang.IllegalStateException: Could not find a method sendMessage(View)

java code: package com.example.myfirstapp; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.Menu; import android.widget.EditText; public ...
-1
votes
0answers
10 views

MVC Code Structure - calling model methods [closed]

I have a basic swing application that follows the MVC structure and a question that relates to the methods in the model and how I call them. Before I ask my question I will provide some background ...
-4
votes
1answer
21 views

best method download for download app [closed]

I want to make small download app what is best download method ? I want to multi download & show progress for one of downloads & user can cancel one of downloads
0
votes
2answers
35 views

Why we must handle exception for method not throwing exceptions? [duplicate]

Given public class ToBeTestHandleException{ static class A { void process() throws Exception { throw new Exception(); } } static class B extends A { void process() { ...
5
votes
3answers
56 views

Extending inheritance of `this` to methods / properties of an `object`

I'm not sure if I phrased the question title correctly; please consider the following to clarify... (function() { var foo = { bar: function() { // Is it possible to reference ...
1
vote
2answers
39 views

Controller Methods with same name

I have this method who call 2 others methods but i've an error when a execute that code. public ActionResult CreateOrder(string action, string type) { /*Some Code*/ ...
0
votes
2answers
22 views

User-defined functions vs. Built-in / Pre-defined functions

Which is more preferable? between the two? like for example in sorting arrays, would it be more practical to use pre-defined sorting function than creating your own sorting function? What are the ...
0
votes
1answer
20 views

using method in meteor collection

I try to use a collection of objects which has some methods. ie : Targets = new Meteor.Collection("targets"); Targets.insert({ id : 0, title : function(){ if(false){ ...
-2
votes
3answers
33 views

how do i access a specific point of an array form another method

i was wondering, if i make a method that returns an array. how can i late on access a specific point in that array in the main or another method? for instance: public static int[] ...
-2
votes
1answer
47 views

Getting an Instance Method to return a string [duplicate]

This should be simple but I'm clearly doing something painfully wrong. I want to write a test method that returns a string. In my classTest.h I have @interface classTest : NSObject - (NSString ...
0
votes
0answers
10 views

Switch Statement Inline code vs Method

I have an ashx asp.net web service, this service contains a switch statement with 4 cases. Each of these cases will execute ~50 lines of code that will get information a database and return that ...
0
votes
0answers
18 views

VB.Net - Using reflection to refer to methods outside of classes

I'm trying to create a program that will execute commands by dynamically invoking methods using the name of a sub provided by the user. With help, I've managed to get it working using a dictionary of ...
0
votes
2answers
51 views

string method exact text

So, I am brand spanking new to JavaScript. I am practicing right now with a Codeacedemy tutorial, and it had me create a program that finds my name in a string of text. But, I realized that if I use a ...
0
votes
0answers
5 views

Clover : Statement and Method codecoverage

In the nice html code coverage that clover generates , I did not see any specific code coverage for method and statement. I just have one number that is overall code coverage. I believe we would like ...
3
votes
4answers
76 views

PHP: method with same name in different classes not working

Same function name in different isolated classes is not allowed? What am I doing wrong? I reduced my real code to the minimum required to make some test. Here it is: <?php ...
1
vote
2answers
56 views

communication between run() method and other class method (java threads)

i have task to do and i'm little stuck. I have to make 4 services (A,B,C,D). Every service should have his own thread. They should start in sequence and run. If service A starts then can start service ...
3
votes
1answer
25 views

Scope resolution operator and class method

Well, I don't get why this code works class MyObject { public function myBaseMethod() { echo 'I\'m declared in' . __CLASS__; } } $instance = new MyObject(); ...
-5
votes
3answers
50 views

Getting the type of an object when passing the object to a method

If you have an object Foo and you pass it to a method void Bar(object obj) and inside you test the type of the object using typeof(obj) will it return the typeof to be Foo or object?
0
votes
4answers
66 views

Ruby string concatenation add space

I need to make a method that repeats a given word but I think I am designing it wrong. I need spaces between the words, what am I missing here? def repeat(word, repeats=2) sentence = word.to_s * ...
0
votes
2answers
43 views

Java add remove methods of sets

Why does the method add(<T> element) and remove(Object o) accept different arguments? For example in a Set<Short> you add short elements. Why does the method remove accepts Object? If you ...
-11
votes
1answer
70 views

Why we can not call any method with its object Refrence in class lavel? [closed]

class array1{ public void m1(){ } } class array2{ array1 ar=new array1(); //ar.m1(); }
1
vote
3answers
50 views

Return value in a class from another class and method

Note that I am new with Java. I have a class and and a method in this class hat computes some values and I want to return them in the first class. I have a code but it returns 0. That's in class that ...
0
votes
0answers
21 views

How do Android swipe keyboards work?

I mean those soft keyboards that let you typing without releasing the screen (with gestures), for example Swift Keyboard. I've tried to make one that recognises turns in a chain of points and reports ...
0
votes
1answer
22 views

Invoking Class B's Method B from within Class A's Method A

[Background] I'm trying to write a simple length converter in objective C. I've set up a button that upon clicking should take the value entered in a text field and run a conversion outputting the ...
-4
votes
0answers
50 views

Try and catch in Methods [closed]

Im having trouble figuring out where to put a try and catch statement in my methods without having the error of "cannot be found" referring to the variable useranswer in return useranswer. Can someone ...
1
vote
3answers
71 views

Repeating Methods

My program isn't finished yet but I need help in finding a way to run my method 6 times. It is a math drill game where the method does the outputting of the question and calculating of the answer. ...
0
votes
5answers
43 views

Adding a counter to a java program with different methods

My program is a math game and will ask the user different questions in different levels. I would like to use a money rewards system that whenever they get one question right, $1000 will be added to ...
-1
votes
0answers
39 views

Catching exceptions outside of method

i have the following script: using System; using Microsoft.Xna.Framework.Input; public class DebugEvent { public static void Check() { if ...
3
votes
1answer
40 views

How to use a Python class in a Java program?

Let's suppose I need to write a Java application and this application need to perform some tasks and I have a Python class that perform those tasks through its functions/methods. I'd like to use this ...
1
vote
2answers
36 views

jQuery method is not executed but with alert in front it does

Hey Stackoverflowianers, hope you're all well. My problem: I try to alter some css on dynamically loaded elements. So I make an ajax-call, on success I write the resulting html to the depending ...
0
votes
3answers
56 views

How to invoke method in another class and return value from it in java?

I have created two classes. In the first class, I have tried to make a method in another class to return a value with a command to output value on the console. But I get an error that says there are ...
0
votes
0answers
28 views

How can I add information from a JTextfield to an Arraylist?

Sorry for my longest question in my life. But I do really want it to be answered! I have been working with GUI and trying to use different layout managers primarily cardlayout for panel swap and ...
-2
votes
2answers
50 views

How do l call this method -(int)match:(NSArray *)otherCards;

How to l call this method from a different class because l have tried and its failing see code #import <Foundation/Foundation.h> @interface Card : NSObject @property (strong, nonatomic) ...
0
votes
0answers
20 views

Method to move entities not changing values in entity.target<entity>

This method is supposed to come up with the distance a Gladiator entity will move in two dimensions when retreating, with a special case if the Gladiator he is in combat with is advancing. ...
-4
votes
2answers
51 views

Access a method from another class [closed]

I made a third class as you recommended like this!! public class WebSocket_Connector { private static final String TAG = "ECHOCLIENT"; public final WebSocketConnection mConnection = new ...
0
votes
1answer
27 views

How to set a dynamic variable for push method?

I am trying to push some items into different Arrays. At the moment i can do that using if statements, and if i have too many arrays? how can i use dynamic variables to push elements into the array?
0
votes
0answers
18 views

Error in Pixel-Pixel-Collision

I have got this pixel-pixel-collision code, but it gives me an error Index outside range of the array on if (((t1[i] & 0xff000000) > 0) && (t2[i] == 0xffC3C3C3)) Variables: int bHit; ...
-1
votes
0answers
48 views

In Python, what are classes, objects and methods? [closed]

Can I just have a simple beginner's (I'm not, but everything I've read describes it in very technical terms) definition of a class, an object and a method. I think a class is a group of functions ...
0
votes
0answers
43 views

What's the proper way to pass an array to a WMI Method?

I'm writing a function in C# that queries WMI, uses the objects returned from WMI as parameters to a method in a different WMI class. private void InstallUpdates() { ManagementScope sc = new ...
0
votes
3answers
45 views

Python Method Call

class AlarmBox(Widget): hour = ["12","1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11"] tensMin = ["0", "1", "2", "3", "4", "5"] onesMin = ["0", "1", "2", "3", "4", "5", "6", "7", ...
0
votes
0answers
9 views

Fedex shipping methods are showing inconsistently

My magento is 1.7.0.2. I configured it to use Fedex, I leave all options as default and only set the Packaging to "Fedex Pak". With that settings, looks like on frontend the shipping methods are ...
1
vote
2answers
39 views

VB.net control with same event handlers

Hello I have this question during my project I'm writing a program using VB with VB express2010 One of my feature is a group of control (lable to be exact), they are attached with same event ...
2
votes
1answer
50 views

Making a method in a class that doesn't need to be called by an object of said class

I'm not really sure how to describe this question well, so apologies if this is hard to understand: Just as a practice (I'm still quite new to C#) I wanted to make an class, Point, that worked like ...
0
votes
1answer
19 views

How to print string in view from controller method

I have a database with a column for each day of the week containing business hours in it. Any day that the business is closed has no data in the table for that column. My goal is to read this data ...
2
votes
2answers
79 views

unexpected results when checking if two arrays are equals in Java

import java.util.Scanner; import java.util.Arrays; class Test { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("Enter the amount of ...

1 2 3 4 5 151