The static-vs-non-static tag has no wiki summary.
0
votes
2answers
26 views
Why do hashCode & equal need non-static fields to be generated?
I am curious about this Error I get while testing out Eclipses' functionality:
I tried to use the command "generate hashCode & Equals", but because the class only has static methods it rejected ...
0
votes
1answer
48 views
call finish() from static method
I am using the Facebook Android SDK and want to close my Activity after a user logs in and gets the user object. In practice I am storing parts of it but I want to close the activity regardless.
...
-3
votes
4answers
84 views
How to print a void method from main method
Okay so I have three class
abstract class Shape
{
int width, height;
String color;
public void draw()
{
}
} // end Shape class
``
class Rectangle extends Shape
{
...
0
votes
2answers
53 views
Are static members seperate then non static members?
So I got this class:
package src;
import java.util.ArrayList;
import java.util.List;
import org.lwjgl.util.vector.Vector3f;
public class Model {
public List<Vector3f> Vertices = new ...
-3
votes
1answer
43 views
Non-static method referenced from a static method error message? [closed]
Writing a program to calculate simple interest and have to use separate methods to return the calculations and make the calculations.
public class Unit7B
{
public static void main ( String [ ] ...
1
vote
2answers
56 views
How do I automatically save what's in my TextArea upon closing the window?
I have a Java GUI program that simulates a simple text field(to be like sticky-notes). I want to be able to click the close button and it automatically saves it to a pre-defined text field in the ...
0
votes
1answer
53 views
is it possible to move string value from static string to non static String in android
is it possible to move string value from static string to non static String?
i am trying to get String Value from static method to non static method, is it possible
i tried with the following,
...
-1
votes
8answers
207 views
How to call a non static method from static method
I need to call a non static method from a static[webmethod]. It is not getting call, I tested it using breakpoints.i tried to call it by making a instance to the class.
This is what i am trying .
...
0
votes
1answer
1k views
Non-static method utf_normalizer::nfc() should not be called statically
At the moment, I am installing PHPBB 3.0.10 and am having this error:
Strict Standards: Non-static method utf_normalizer::nfc() should not be called statically in ...
2
votes
3answers
4k views
Difference between Static methods and Instance methods
I was just reading over the text given to me in my textbook and I'm not really sure I understand what it is saying. It's basically telling me that static methods or class methods include the ...
0
votes
1answer
176 views
Accessing variable outside scope of a callback c++
I have been beating my head around this issue of static versus non-static, callback functions, function pointers, etc... My goal is to access data of a struct outside the scope of my callback ...
0
votes
4answers
334 views
Having a difficult time making a static method which utilizes non-static methods
I'm about 6 weeks into learning Java and still struggling with implementing static methods (thought I really understood it, but this proved me wrong!).
I'm trying to make the value of a locally ...
0
votes
0answers
396 views
Can't make static reference to non-static method (Android FragmentTabsPager scenario)
I am using FragmentTabsPager with Actionbar Sherlock. When a tab changes, I need to inform the corresponding ListFragment to redraw itself with new list content.
Given the code I'm referencing (ABS ...
3
votes
1answer
3k views
Can't make static reference to non-static method ( Android getApplicationContext() )
I have been storing a global variable that's needed across Activities in my Android app by using a subclass of android.app.Application as explained by Soonil (in Android: How to declare global ...
1
vote
1answer
877 views
Android: static reference / non-static method when using findViewById(ID)
Let me start by confessing that I come from an Erlang background and am new to Android and Java programming... to be honest object orientation is giving me a headache. :)
I am having some trouble ...
4
votes
5answers
311 views
Can I get best performance making static variables?
Why some people do:
char baa(int x) {
static char foo[] = " .. ";
return foo[x ..];
}
instead of:
char baa(int x) {
char foo[] = " .. ";
return foo[x ..];
}
looks like very ...
0
votes
3answers
162 views
ASP.NET Non-Static Class Within a Static Class Thread-Safety
Stack Overflow. Let's say I want to initialize a non-static class of variables, two of which are a UserID (int) and MyDictionary (Dictionary). This non-static class is declared within a static class ...
0
votes
3answers
195 views
Why can't I call a non-static variable?
Eclipse says I can't make a static reference to the non-static field Art.instance. Why does it think I'm calling Art.instance from a static context?
TDRenderer itself gets called like so:
renderer = ...
1
vote
3answers
89 views
Is it going to make any difference if a function is declared static or non static if the fields in it are static?
static int _i;
static void Display()
{
//operates on _i;
}
AND
static int _i;
void Display()
{
//operates on _i;
}
Which are the scenarios where ...
2
votes
3answers
205 views
C# error(using interface methods): An object reference is required for the non-static field, method, or property
I'm having trouble using a third party API that has outdated documentation, so I'm trying to figure out why this piece of @#$! isn't working. And by @#$! i mean "code", of course :)
So as far as i ...
3
votes
3answers
583 views
PHP: Why am I getting errors about static properties?
http://codepad.viper-7.com/I0Zqoi
I don't understand what's wrong with this or how to fix it or why. Can someone who knows a little about programming please explain what's happening behind the ...
4
votes
6answers
866 views
What exactly does “static” mean when declaring “global” variables in C++?
This is an expansion of the scope of a previous question of mine.
What exactly is "static", how is it used, and what is the purpose of using "static" when dealing with C++?
Thanks.
0
votes
4answers
20k views
non static method cannot be referenced from a static context
First some code:
import java.util.*;
//...
class TicTacToe
{
//...
public static void main (String[]arg)
{
Random Random = new Random() ;
toerunner () ; // this leads to a path of
...
2
votes
3answers
13k views
“Cannot make a static reference to a non-static method” in Android
I'm having some issues with the old "Cannot make a static reference to a non-static method" error in my Android program. I am creating a sand falling game (similar to the Powder Game) and I created a ...
0
votes
3answers
702 views
non static variable called from static content, java
I know this question was answered before, but I cant still handle it with my code.
Please can someone pointing out how can I fix it on this particular code. Id like to call trace(); but dont know ...
1
vote
3answers
270 views
Where can I find some clear examples of static vs. instance “fieldless” properties for use in the classroom?
In all but a few cases, properties are backed up by fields, either explicitly or implicitly. However, properties like DateTime.Today are calculated properties not backed up by a field (EDIT: ...