Tagged Questions
The non-static tag has no wiki summary.
11
votes
4answers
303 views
How to wrap a static class in a non-static instance object (dynamically)
I have an interesting problem. I need to wrap static classes dynamically. I.e. return a non-static instance to my callers. e.g.:
public object CreateInstance(string className) {
Type t = ...
7
votes
7answers
5k views
What Cases Require Synchronized Method Access in Java?
In what cases is it necessary to synchronize access to instance members?
I understand that access to static members of a class always needs to be synchronized- because they are shared across all ...
5
votes
4answers
909 views
C++ Overload Static Function with Non-Static Function
I would like to print two different things depending on whether a function is called statically with Foo::print() or from an instance of Foo foo; foo.print();
EDIT: Here is a class definition that ...
5
votes
6answers
11k views
non-static variable cannot be referenced from a static context (java)
I ask that you ignore all logic.. i was taught poorly at first and so i still dont understand everything about static crap and its killing me.
My error is with every single variable that i declare ...
5
votes
4answers
13k views
What does “operator = must be a non-static member” mean? (C++)
I'm in the process of creating a double-linked list, and have overloaded the operator= to make on list equal another:
template<class T>
void operator=(const list<T>& lst)
{
...
4
votes
6answers
9k views
calling non-static method in static method in Java
I'm getting an error when I try to call a non-static method in a static class.
Cannot make a static reference to the non-static method methodName() from the type playback
I can't make the method ...
3
votes
7answers
267 views
Java Beginner Question : What is wrong with the code below?
public class Function
{
public static void main(String args[])
{
System.out.println(power(3,2));
System.out.println(power(3,2));
System.out.println(power(2));
}
public ...
2
votes
5answers
82 views
Static reference to non-static field Java error
I'll preface this by saying that I've been a longtime fan of Stack Overflow, and over the past few semesters I've usually been able to find the answer to all my questions without actually asking one. ...
2
votes
4answers
216 views
Register non-static C++ methods in Lua
I'm trying to make a small C++/Lua system where I would create my objects and attach behaviors to them in Lua. Right now I'm using LuaWrapper (a small header with basic C++ to Lua stuff), my problem ...
2
votes
4answers
271 views
Is there any way for a static method to access all of the non-static instances of a class?
This is probably a dumb question but I'm going to ask it anyways... I am programing in C#.NET. I have a class that contains a non-static, instance EventHandler. Is it possible to trigger that ...
2
votes
3answers
525 views
Non static members as default parameters in C++
I'm refactoring a large amount of code where I have to add an extra parameter to a number of functions, which will always have a value of a member of that object. Something like
class MyClass
{
...
2
votes
4answers
524 views
static method with polymorphism in c++
I have a weird issue using polymorphism.
I have a base class that implements a static method. This method must be static for various reasons. The base class also has a pure virtual method run() that ...
1
vote
3answers
129 views
What is a nonstatic member function?
I am being told that I can't use the 'this' keyword in a class function. I'm coming from c# and i'm used to this working, but the compiler tells me that it can only be used within nonstatic member ...
1
vote
2answers
175 views
Accessing Java Applet non-static methods using Java
I'm trying to access non-static methods in a java applet, through javascript.
I access static methods using the Syntax AppletName.Packages.className.methodName(); and it works.
If I try to access ...
1
vote
3answers
166 views
c++ static non-static
in c++
where are static or non-static variables stay? I mean in memory.
and, When are static or non-static variables initialized?
Need someone help me get my thought clear.
Thank you!
and what ...
1
vote
2answers
179 views
extern keyword with function names
I know that static keyword makes a C function/variable is file-scoped.
And I've read that If I want to make a variable global scope (accessed by more than one file), I should do:
in the .c file:
int ...
1
vote
5answers
1k views
Java: static-non-static-this problem
$ javac TestFilter.java
TestFilter.java:19: non-static variable this cannot be referenced from a static context
for(File f : file.listFiles(this.filterFiles)){
...
1
vote
7answers
133 views
Java method help
Ok, so I'm working on a project for a class I'm taking.. simple music library. Now I'm having some issues, the main issue is I'm getting "non-static method cannot be referenced from a static context"
...
1
vote
4answers
1k views
Static vs. non-static method 2 [closed]
Possible Duplicate:
Static vs. non-static method
which one is better for a good design
or are there any difference? or is it just up to the developer?
class Foo
{
int x;
void ...
1
vote
1answer
932 views
Static Web Service over non-static
Currently I have a web service (WCF) that exposes methods that are set to static.
From a strictly memory/GC perspective, what is different in how the CLR and GC handle static versus non-static ...
0
votes
1answer
35 views
A Beginner Puzzle of Static and Non-Static Classes in OOP ( C# )
A friend of mine (from work) asked me a question.
Remove the static keyword from the Dictionary Live from the Members class.
Don't use new Members(); to create an instance in Check(...) method.
So ...
0
votes
1answer
28 views
A field initializer cannot reference the non-static field, method, or property 'Adb.Form1.hanteraKund' using a Controller on a Form
I got some problem to initialize my Controller-class in my Form-class. It works fine in my console application but I get this error when I try to use it in my Form-application.
I understand what the ...
0
votes
0answers
47 views
android ndk-build with jrtplib supported in jni, non-static reference member can't use default assignment operator
recently, i am ndk-building with jrtplib supported in jni.
but it comes up with this errors shown as follow:
in rtpsessionsources.h 78: non-static reference member 'jrtplib::RTPSources& ...
0
votes
3answers
148 views
Java - Non-static Enums
Say, I have some classes:
class NPC {
Attributes attributes;
Skills skills;
void doStuff() { //doStuffff }
}
class Player {
Attributes attributes;
Skills skills;
void ...
0
votes
2answers
100 views
how do i declare a static property/name declared in xaml? or
I get this error,
Error 1 An object reference is required for the non-static field, method, or property 'SilverlightForum.MainPage.stackPanelAssetsControl' C:\Users\UserName\Documents\Visual ...
0
votes
1answer
215 views
Help cannot calling non-static method model in play framework controller?
I've been following play framework 1.1.1 YABE adding comment tutorial then ends up with this problem.
the problem is this error message appears
Compilation error
The file ...
0
votes
2answers
151 views
how to update a textbox from a static class?
This is driving me nuts. I have a working text based application. It has many many variables which now need a GUI. I'm starting with the basics. Whenever some data is sent to my log, I want it to ...
0
votes
2answers
252 views
trouble accessing non-static functions from static functions in AS3
I have a class containing, among other things, a drop down menu. With the aim of saving space, and since the contents of the menu will never change, I've made a static DataProvider for the whole ...
0
votes
2answers
165 views
Triggering a non-static class from a static class?
I am writing a class library(API) in C#. The class is non-static and contains several public events. Is it possible to trigger those events from a static method in a separate class?
For example...
...
0
votes
1answer
806 views
java 1.4 :how to insert multiple records in a database with one single hit using executeBatch?
i am reading records data from a file(records count can be up to thousands ).Now i want to insert each record in to database.I want to insert all of records in one hit to reduce performance hit. If i ...
0
votes
2answers
206 views
Modifying a non-static object from a static method
I'll first tell you what I am trying to do, and then how I am trying to do it. If there is a better way please let me know.
I am working with two forms - lets call them form_main and ...
-1
votes
2answers
456 views
is static method faster than non-static?
EDIT::oh i forgot
class Test1{
public static function test(){
for($i=0; $i<=1000; $i++)
$j += $i;
}
}
class Test2{
public function test() {
for ...
-2
votes
4answers
1k views
Java Thread using static or non-static nested class
I've encountered a very strange problem.
My program looks like this:
class Outter{
class Inner extends Thread {
public void run(){
// do something
}
...
-4
votes
3answers
108 views
how can add map object to list object non static in java [closed]
I have problem with this code,when I add map object to list,all previous added object will be changed.how can I declare map as non static?
for(Statment){
map.put(Key,value),
} ...