Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
3answers
199 views

Trying to use static methods/members, need some help

I've been spoilt with c# coding the last few years and now I'm back onto c++ and finding that I'm having trouble with stuff that is supposed to be simple. I'm using a third party library for gamedev ...
2
votes
5answers
289 views

Initializing static pointer in templated class

This is difficult for me to formulate in a Google query (at least one that gives me what I'm looking for) so I've had some trouble finding an answer. I'm sure I'm not the first to ask though. Consider ...
2
votes
2answers
4k views

Object retain behavior of Objective-C class methods

What's the best practice for retaining and releasing objects passed to class methods? For instance, if you have a "class variable" declared like so: static NSString *_myString = nil ...is the ...
1
vote
1answer
59 views

Static map initializer function error

Well I get the following base error: 1>c:\program files\microsoft visual studio 10.0\vc\include\utility(163): error C2436: 'second' : member function or nested class in constructor initializer ...
1
vote
1answer
54 views

Static member error in c++

I am trying to define static member pointer in c++. However I get a linker error. the error is 1>main.obj : error LNK2001: unresolved external symbol "public: static class Activity * * ...
1
vote
2answers
52 views

Delaying static class member initialization

I have this (example) code: init() class A: foo = bar() def __init__(self): print(A.foo) The problem is, the function bar() refuses to work unless init() has been called first. ...
1
vote
2answers
52 views

ios_base, C++ question regarding static members

Static constants in the ios_base class are initialized when created, which makes sense for constants. Can non-constant static member variables be intiliazed the same way, or this concept only allowed ...
1
vote
3answers
292 views

vc++ - static member is showing error

I am using vc++(2010). I am trying to create a class for server side socket. Here is the header file #include<winsock.h> #include<string> #include<iostream> using namespace std; ...
1
vote
1answer
277 views

Public (static) property in jQuery plugin

I've a small jQuery plugin that I use for form AJAX validation. There is a callback that alerts the calling script of every "stage" in the validation/submission process. Some snippets: (function ($) ...