Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
518 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" ...
5
votes
5answers
1k 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, ...
5
votes
8answers
1k views

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

Where would you use a friend function vs a static function?
3
votes
3answers
319 views

c++ - 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 ...
3
votes
1answer
232 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 ...
3
votes
2answers
1k 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) { ...
2
votes
2answers
64 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 ...
2
votes
2answers
90 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 ...
2
votes
2answers
56 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(): ...
1
vote
1answer
62 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 ...
1
vote
1answer
115 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 ...
1
vote
2answers
156 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
26 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 ...
0
votes
1answer
103 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 ...
0
votes
3answers
159 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 ...
0
votes
2answers
72 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 { ...
0
votes
2answers
231 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. ...
0
votes
3answers
184 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
98 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