The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
48 views

Scope of Namespace

I'm a C developer and just recently switch to C++ so namespace is new thing to learn. The A class has a static method validate(), thus it can only access static variables or constants of the A class. ...
1
vote
2answers
97 views

Does a static function need the static keyword for the prototype in C?

My C programming book says that when I want to create a static function, I need to put the static keyword in front of the function definition. It doesn't mention anything explicitly about the ...
8
votes
3answers
362 views

Static functions in Linux device driver

Why is it that every function in most device drivers are static? As static functions are not visible outside of the file scope. Then, how do these driver function get called by user space ...
-1
votes
6answers
190 views

Proper class definition and usage - thread safe - ASP.net

I wonder how to define a class properly and use it safely. I mean thread safely when thousands of concurrent calls are being made by every website visitor. I made myself something like below but i ...
1
vote
4answers
76 views

reference to static function in PHP

is possible get reference to static function and run? like this: namespace vendor\foo; class Bar { public static function f1() { echo 'f1'; } public static function f2($id) ...
0
votes
2answers
73 views

php static function run twice

I am new in studing php static function I want to build a function, curl some contents from some url, and then process php regex to get what I need. Here is my code, but the curl part runs twice. How ...
0
votes
2answers
87 views

C++ static functions and variables

I have written a class as shown below: #include<iostream> using namespace std; class A { static int cnt; static void inc() { cnt++; } int a; public: A(){ inc(); } }; int main() { A d; return ...
3
votes
2answers
155 views

How can I assign a value to public variable from inside static function in php?

I tried $this-> but could not assign a value to $first_name and $last_name variable. Without removing static feature of the function and without inserting static feature to variables, how can I ...
0
votes
2answers
309 views

Android Static functions

I'm wondering how I can access the return statement with a static function. I have a static function with Async and I want to then get the return statement in another class - I know it sounds complex ...
0
votes
3answers
33 views

Return an object with an update data, that is pass in to a public static function

How can I return an object with an update data, that is pass in to a public static function? GetDate.dayName(MyDate.setDate(1984,3)) //MyDate with new info (year, month) will be pass into ...
4
votes
2answers
1k views

PHP constructors and static functions

I'm a bit confused on how constructors work in PHP. I have a class with a constructor which gets called when I instantiate a new object. $foo = new Foo($args); __construct($params) is called in ...
3
votes
1answer
694 views

Static member functions error; How to properly write the signature?

I am getting an error when trying to compile my code in g++ using the current signature: cannot declare member function static void Foo::Bar(std::ostream&, const Foo::Node*) to have static ...
0
votes
1answer
415 views

.NET 4.0 in C++ - How call AppendText for RichTextBox from a static member function

My mind somehow is stuck in a "loop of errors". I don't want to waste time any more with endless trial and error, so I better ask here: I have a Windows-Form (.NET, C++) like following. The ...
2
votes
2answers
287 views

C++ Static function duplication

Let's say I have a class with a static function. The class's constructor does a pthread_create using the static function as its entry point. My question is: If I had multiple instances of this ...
0
votes
3answers
1k views

NSClassFromString(MyClassName) than calling class function of MyClass

i got a UIViewCustom Class with 7 childs. each of the childs got their own class functions for helping initiating +(int) minHeight; +(int) minWidth; in a UITableView i select one of the classes and ...
2
votes
2answers
64 views

How to refer overriden class functions in python

I know C++ and Java and I am unfamiliar with Pythonic programming. So maybe it is bad style what I am trying to do. Consider fallowing example: class foo: def a(): ...
6
votes
3answers
1k views

Best simple way to mock static/global function?

I have a simple almost value-like class like Person: class Person { public: Person(ThirdPartyClass *object); virtual ~Person(void); virtual std::string GetFullName() const; virtual ...
9
votes
3answers
3k views

How to obtain static member variables in MATLAB classes?

Is there a way to define static member variables in MATLAB classes? This doesn't work: classdef A properties ( Static ) m = 0; end end It suggests to use keyword "Constant" ...
0
votes
2answers
91 views

Static variables and functions usage

I have the following class definition and the main(). Can someone please point me why I am getting the error? #include <iostream> #include <list> using namespace std; class test { ...
1
vote
1answer
181 views

Static variables release order

Please help, The problem: core dumps in following code: I have an abstract class SomeOtherClass, and have derived from it SomeOtherClassImpl. Here is the code which causes the trouble: class ...
0
votes
2answers
338 views

Actionscript- problem with static functions and UI elements?

I'm in a little over my head here with OOP in actionscript. I've got a Display class that captures a video stream. I'm trying to create a set of basic stop / record buttons to control the camera. ...
1
vote
2answers
443 views

C++ calling a static function from another static function

have a static function in a header file class Diagnostics { public: static void functionA(){ } static void functionB(){ some code //works fine until enters the loop below ...
0
votes
3answers
224 views

What are the pitfalls when using static functions? Like in this Android code

I use in the getView()-Method of this example a static function to download the source of an ImageView. Later there will be threading included. However, I like to know in general how save the use of ...
0
votes
2answers
166 views

Problem accessing Server variable in static function in C#

Im unable to access server/response variable in my static function. Can i access them in static function or should i include some namespaces
4
votes
1answer
418 views

SWIG support for inheritance of static member functions

SWIG doesn't wrap inherited static functions of derived classes. How it can be resolved? Here is a simple illustration of the problem. This is a simple C++ header file: // file test.hpp #include ...
9
votes
2answers
5k views

Static Function Help C++

I can't get past this issue I am having. Here's a simple example: class x { public: void function(void); private: static void function2(void); }; void x::function(void) { ...
7
votes
5answers
3k views

C API function callbacks into C++ member function code

So, I'm using the FMOD api and it really is a C api. Not that that's bad or anything. Its just it doesn't interface well with C++ code. For example, using FMOD_Channel_SetCallback( channel, ...
19
votes
13answers
4k views

Where would you use a friend function vs. a static member function?

We make a non-member function a friend of a class when we want it to access that class's private members. This gives it the same access rights as a static member function would have. Both alternatives ...