This tag refers to members of a class in object-oriented language. These are fields, constructors, destructors, methods and - usually in higher-level languages - properties and events.

learn more… | top users | synonyms

0
votes
1answer
17 views

passing user defined member function with mem_fun_ref()

i got through with passing normal methods and functors as arguments, how ever i got stuck with passing member variables. #include <iostream> #include <string> #include <vector> ...
1
vote
1answer
33 views

Define a COM smarter pointer as a member in header file?

I am wondering how to define a COM smart pointer in a header file as a class member? Here is what did: In .cpp file, I have: long MyClass:MyFun(long &deviceCount) { RESULT h = ...
1
vote
1answer
50 views

virtual method behaves differently with multiple inheritance

why this works struct Base { virtual void visit(const A &) { }; virtual void visit(const B &) { }; } and this complains about ambiguity when calling visit method template< ...
2
votes
1answer
72 views

Is this a valid way to create class-level properties (i.e. dot-syntax) in Objective-C? [duplicate]

Possible Duplicate: How do I declare class-level properties in Objective-C? Objective-C 2.0 dot notation - Class methods? Objective-C's @property declarations do not allow you to specify ...
0
votes
1answer
59 views

Google Test (gtest): ASSERT_PREDx and class member functions

Ok, so I'm using gtest for unit testing, and I've got something I want to do: class A { /* Private members */ public: bool function_to_test(int index); } In the test function, I'd like to ...
3
votes
4answers
48 views

How can I access a classmethod from inside a class in Python

I would like to create a class in Python that manages above all static members. These members should be initiliazed during definition of the class already. Due to the fact that there will be the ...
0
votes
1answer
276 views

Using Linq , Reflection , lambda expressions to systematically add SqlParameters into SqlParameterCollection

public class SomeClass { public SqlParameterCollection SPPC; public SomeClass(someType somePrameter) { ....... SqlParameters assignmet with someParameter goes here ....... ...
7
votes
1answer
483 views

C++11 allows in-class initialization of non-static and non-const members. What changed? [closed]

Before C++11, we could only perform in-class initialization on static const members of integral or enumeration type. Stroustrup discusses this in his C++ FAQ, giving the following example: class Y { ...
0
votes
0answers
32 views

Possible to check for class members in Spring bean classes?

To me, one of the most difficult thing to catch in production environments is when class members (i.e. Static) are falsly declared in bean classes instantiated by the Spring container. Is there a way ...
1
vote
2answers
85 views

Set class member value by its name

I've a class, derived of QObject and it has some members. I load a configuration file with param value syntax. Each param is a member of the class and I want to set it's value to value. How is it ...
0
votes
1answer
78 views

Eigen's Map<> as a class member

I'm trying to have a class that contains array but have an interface to them through eigen. class A { public: array<double,3> xa; Map<Matrix<double,3,1>> x; A() : ...
0
votes
3answers
172 views

Can't access Global Function from within Class

I've created a global function, CallPrice(args). I have a class, EuropeanOption, and I have a class function called CallPrice, which should call the global function using variables from the ...
2
votes
5answers
165 views

C++ : Base type member variables as References, or Pointer

I am wondering what might be the best way to accomplish a design dilemma in C++ ... I have a class, which contains member variables of type Base of another class, and the real objects that are ...
0
votes
2answers
263 views

Is it mandatory to initialize class members if a constructor is explicitly defined?

My college course book states that : When a constructor is declared for a class, initialization of the class objects becomes mandatory. Link to the specific page of the book : ...
1
vote
1answer
43 views

Responsibility of object creation within class

This might sound like a noob question. class MyClass { public List<MyObjects> myObjects; public MyClass() { //... } } class UserClass { public void SomeFunction() ...
2
votes
4answers
180 views

Howto Execute a C++ member function as a thread without Boost?

I am using a small embedded RTOS which supports threads. I am programming in C++ and want to create a class that will allow me to run an arbitrary member function of any class as a thread. The RTOS ...
0
votes
2answers
63 views

Is this name lookup in dependent base class with VC++ 2010 non-standard?

The code below does not compile on Ideone or Codepad, yielding errors like: 'X' was not declared in this scope but it does on VC++ 2010: #include <iostream> #include ...
1
vote
0answers
79 views

Applying metaclass rules to all descendants rather than direct metaclassed class

Let me start by defining the goals I have: Enabling definition of abstract class members (not properties, methods, or instance members) with no default values (not None or some other magic value, ...
0
votes
3answers
104 views

Do class member reference variables have in-built “const-correctness”?

struct A { int &r; A (int &i) : r(i) {} void foo () const { r = 5; // <--- ok } }; The compiler doesn't generate any error at r = 5;. Does it mean that &r is already ...
0
votes
3answers
93 views

Should I use Func<T> in place of a private method?

I'm posting it here and not code review because I want to know if the executing program can behave differently because of this (possibly something subtle). Is a private method: private int Foo() ...
3
votes
2answers
66 views

static class member gets “undefined reference”. Don't know why

I don't know what is wrong with this code. I have the following, very simple, class: class SetOfCuts{ public: static LeptonCuts Leptons; static ElectronCuts TightElectrons; static ...
0
votes
3answers
71 views

Accessibility of data member in member function before declaration of data member

Consider this code: class Test { public: Test() { i = 0; } private: int i; }; Data member 'i' is used even before it is declared/defined. Should this not be a compilation error ? (It compiled ...
1
vote
2answers
139 views

class member as reference to another: crash in assignment operator

I have a class Bar with references to inside of one of its members (Bar::foo): #include<vector> #include<algorithm> struct Foo{ int x, y; }; struct Bar{ Foo foo; int &x, ...
7
votes
7answers
438 views

What is the “non-static method” error and how does “this” work?

I have a couple of EXTREMELY basic Java questions that I would like to finally understand, once and for all. I have the following short piece of code: public class VeryBasicJava{ public static ...
3
votes
4answers
353 views

Can a single function pointer point to multiple classes member function

Here are the requirements posed by my application. I have a class A, that accepts a function pointer say cFunc, Basically in my implementation of A, I have it call cFunc multiple times. The cFunc ...
3
votes
6answers
82 views

Puzzling scope behaviour

I can't seem to understand what is going on here: class testclass: def __init__(self): print "new instance" myList=[] if __name__ == "__main__": inst1=testclass() ...
3
votes
1answer
645 views

Initializing Non-pointer Class Members

Lately, I've been reading much about constructors from the well-received C++ FAQ. One of entries mentions that it's always best to use initialization lists, as opposed to initializing class members ...
0
votes
3answers
634 views

using interface to communicate between 2 java classes

I have 2 classes A and B. class A implements Constants{ private int state; } class B implements Constants{ foo(){ //want to set state variable of class A like this state = state1 } ...
1
vote
3answers
342 views

Initializing a member class of an object using a non-default constructor in C++

I have a specific situation where I've got an object that I want to use the boost random number generators on, and it has lead to a greater question which I cannot seem to answer. Here is the example ...
1
vote
5answers
135 views

template to access different members of objects passed as arguments

I have a function to compute gradient of different variable defined on set of neighbor points. The algorithm is always the same, but depending on what is computed, different member data of the ...
4
votes
1answer
102 views

Class member access : section 3.4.5, point 2: point from N3290 draft C++

Class member access : section 3.4.5, point 2: If the id-expression in a class member access (5.2.5) is an unqualified-id, and the type of the object expression is of a class type C, the ...
2
votes
1answer
236 views

c++ private member variable unknown in another function

I have a newbie question about how to assign class member (setter). I am used to scripting and mostly there it's done via (in python) def set_mymember(mymember): self.mymeber = mymember My ...
4
votes
2answers
147 views

What is the lifetime of the class data member which const reference to a rvalue?

Generally this discussion is up to the local function variable only: void foo (const int &i) { // use i till foo() ends } foo(3); But, does this rule applies to the class member also ? ...
5
votes
7answers
482 views

Is it possible to manually calculate the byte-offset of a class member?

That is, what is the standard a compiler uses to generate a class? For example, let's say that I have class C with members x, y, and z, and I want to know the offset of z within that class. Can I ...
2
votes
4answers
964 views

In .NET, can you use reflection to get all non-inherited methods of a class?

Because of this issue here, I'm trying to write a custom JsonConverter that handles cases where you subclass a list or a collection, then add extra properties to it. As such, one approach would be to ...
13
votes
1answer
185 views

Private inheritance: name lookup error

I have the following code example that doesn't compile: #include <stdio.h> namespace my { class base1 { // line 6 }; class base2: private base1 { }; class ...
3
votes
4answers
4k views

C++ define class member struct and return it in a member function

My goal is a class like: class UserInformation { public: userInfo getInfo(int userId); private: struct userInfo { int repu, quesCount, ansCount; }; userInfo infoStruct; ...
2
votes
8answers
164 views

C++: Using '.' operator on expressions and function calls

I was wondering if it is good practice to use the member operator . like this: someVector = (segment.getFirst() - segment.getSecond()).normalize().normalCCW(); Just made that to show the two ...
3
votes
3answers
310 views

Why can I not access this class member in python?

I have the following code class Transcription(object): WORD = 0 PHONE = 1 STATE = 2 def __init__(self): self.transcriptions = [] def ...
2
votes
3answers
170 views

How to get access to this class member from within a callback?

This question is best explained with some code, so here it is: // a class function a_class { this.a_var = null; this.a_function = a_class_a_function; } // a_class::a_function function ...
0
votes
2answers
637 views

Objective-C : How may I hide a class member from outside the class?

I'm fighting with something and I don't find any satisfying solution. I have a class with a "myMutableArray" member. I would like the class to manage itself adding and removing items from the array, ...
1
vote
2answers
268 views

Is it possible to initialize static const member object in a class in C++?

Is it possible to initialize a static constant member in a class definition? Please see below for the code, class foo { public: foo(int p) : m_p(p){} ~foo(){} private: int m_p; }; ...
2
votes
2answers
225 views

What is the right way to put a smart pointer in class data (as class member) in C++?

Suppose I have a class Boda: class Boda { ... }; And I have a member cydo in this class that I want to be a smart pointer (that is, I want it to get deallocated automatically as soon as the ...
4
votes
2answers
617 views

Multiple Inheritance Template Class

class messageA { }; class messageB { }; template<class T> class queue { public: virtual ~queue() {} void submit(T& x) {} }; class A : public queue<messageA>, public ...
9
votes
3answers
1k views

VS IntelliSense - IFluentInterface / IHideObjectMembers trick does not work. Why?

The IHideObjectMembers trick (a.k.a IFluentInterface) can be used e.g. in fluent interface implementations to hide System.Object members from IntelliSense. (If you don't know this trick, you can read ...
15
votes
9answers
523 views

Object oriented design suggestion

Here is my code: class Soldier { public: Soldier(const string &name, const Gun &gun); string getName(); private: Gun gun; string name; }; class Gun { public: void fire(); ...
0
votes
1answer
332 views

How to access class members from an array of class variables?

I want to use PHP's reflection features to retrieve a list of parameter names from a method. I have a class like this: class TestClass { public function method($id, $person, $someotherparam) { ...
2
votes
8answers
877 views

Why are “inlined” static consts not allowed, except ints?

Possible Duplicate http://stackoverflow.com/questions/370283/why-cant-i-have-a-non-integral-static-const-member-in-a-class struct Example { static const int One = 1000; // Legal static ...
28
votes
8answers
5k views

Should I prefer pointers or references in member data?

This is a simplified example to illustrate the question: class A {}; class B { B(A& a) : a(a) {} A& a; }; class C { C() : b(a) {} A a; B b; }; So B is responsible ...
17
votes
5answers
3k views

GCC problem : using a member of a base class that depends on a template argument

The following code doesn't compile with gcc, but does with Visual Studio: template <typename T> class A { public: T foo; }; template <typename T> class B: public A <T> { ...