Tagged Questions
The static-vs-non-static tag has no wiki summary.
5
votes
6answers
553 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.
5
votes
8answers
981 views
What exactly does “static” mean when declaring “global” variables in Java?
I've been running into this problem many times and I never bothered to learn why its happening and learn what "static" actually means. I just applied the change that Eclipse suggested and moved on.
...
3
votes
3answers
94 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 ...
2
votes
3answers
98 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 ...
1
vote
3answers
71 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 ...
1
vote
3answers
5k 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 ...
1
vote
3answers
218 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: ...
0
votes
4answers
7k 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
...
0
votes
3answers
329 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 ...