Tagged Questions
5
votes
4answers
911 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 ...
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 ...
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
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 ...
1
vote
3answers
169 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
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
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
2answers
101 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
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
254 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
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
457 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
}
...