Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
8answers
10k views

Static nested class in Java, why?

I was looking at the Java code for LinkedList and noticed that it made use of a static nested class, Entry. public class LinkedList<E> ... { ... private static class Entry<E> { ... } } ...
12
votes
4answers
302 views

Is there an easy way to tell if a class/struct has no data members?

Hallo, is there some easy way in C++ to tell (in compile-time) if a class/struct has no data members? E.g. struct T{}; My first thought was to compare sizeof(T)==0, but this always seems to be at ...
11
votes
1answer
214 views

Enumerations and pointer-to-members

I recently attempted to create an is_class class and needed a way for the compiler to differentiate between enumeration types and class types for which conversion operators are defined. Seeing as how ...
9
votes
2answers
1k views

C++ template static member instantiation

#include <map> #include <iostream> template <typename T> class A { static std::map<int, int> data; public: A() { std::cout << data.size() << std::endl; ...
7
votes
11answers
388 views

Class members that are objects - Pointers or not? C++

If I create a class MyClass and it has some private member say MyOtherClass, is it better to make MyOtherClass a pointer or not? What does it mean also to have it as not a pointer in terms of where ...
7
votes
7answers
2k views

Trailing underscores for member variables in C++

I've seen people use a trailing underscore for member variables in classes, for instance in the renowned C++ FAQ Lite. I think that it's purpose is not to mark variables as members, that's what "m_" ...
6
votes
4answers
174 views

Is accessing c++ member class through “this->member” faster/slower than implicit call to “member”

After a some searching on our friend google, I could not get a clear view on the following point. I'm used to call class members with "this->". Even if not needed, I find it more explicit as it helps ...
6
votes
7answers
188 views

const_cast of a static const member

The following code compile well both with GCC (4.2-4.6) and with Clang (2.1), but when I run the executable it gives me "Bus error: 10". I don't understand the reason. #include <iostream> ...
6
votes
4answers
190 views

How is membership testing different for a list and a set?

I'm having trouble with figuring out why the first of these assertions is OK and the second raises an error. subject_list = [Subject("A"), Subject("B"), Subject("C")] subject_set = set() ...
6
votes
8answers
271 views

Constant Member Functions

After reading this, it is my understanding that declaring a method as const prevents it from accidentally modifying the class's member variables. Are const methods commonly used? Should they be used ...
6
votes
2answers
212 views

Namespace member definition

namespace M{ void f(); void M::f(){} } int main(){} The above code gives error like so: "ComeauTest.c", line 3: error: qualified name is not allowed in namespace member ...
6
votes
1answer
2k views

How to initialize a shared_ptr that is a member of a class?

I am not sure about a good way to initialize a shared_ptr that is a member of a class. Can you tell me, whether the way that I choose in C::foo() is fine, or is there a better solution? class A { ...
6
votes
5answers
104 views

Declaring members only in constructor

I'm coming from a C++ background to python I have been declaring member variables and setting them in a C++esqe way like so: class MyClass: my_member = [] def __init__(self,arg_my_member): ...
6
votes
3answers
415 views

F# record member evaluation

Why is t.b evaluated on every call? And is there any way how to make it evaluate only once? type test = { a: float } member x.b = printfn "oh no" x.a * 2. let t = { a = 1. } t.b t.b
6
votes
3answers
805 views

Why protected superclass member cannot be accessed in a subclass function when passed as an argument?

I get a compile error, which I'm slightly confused about. This is on VS2003. error C2248: 'A::y' : cannot access protected member declared in class 'A' class A { public: A() : x(0), y(0) {} ...
6
votes
7answers
447 views

Can I transform an object and access the private data members in C++?

I want to access a private data member in a class. There is no member function in the class to access the private data member. It is private. I want to take the class and some how crack it open. One ...
6
votes
1answer
258 views

F# : Accessing public readonly members of structs in external assemblies

I'm getting a strange error when I use F# to read a public readonly member of a struct type defined in a C# assembly. // C#: compile to Lib.dll namespace Lib { public class MyClass { public ...
6
votes
9answers
4k views

Why doesn't C++ have a pointer to member function type?

I could be totally wrong here, but as I understand it, C++ doesn't really have a native "pointer to member function" type. I know you can do tricks with Boost and mem_fun etc. But why did the ...
5
votes
3answers
111 views

C++ const member functions are modifying member variables

Today I found out that code like that works. That sounds really strange to me, because as far as I always knew you can't modify any of members from const member function. You actually can't do it ...
5
votes
7answers
384 views

To inline or not to inline

I've been writing a few classes lately; and I was wondering whether it's bad practice, bad for performance, breaks encapsulation or whether there's anything else inherently bad with actually defining ...
5
votes
4answers
275 views

Is `this` keyword optional when accessing members in C#?

I notice that if you have a private member in a class, you can access it in the class methods by just referring to it's name. You do not need to say this.memberName, just memberName works. So is the ...
5
votes
1answer
240 views

Dynamically list all members of a class

Is it possible in C++ to dynamically (during run-time) get a list of all members of the class?
5
votes
3answers
257 views

Specialization of a member of a template class for a template class parameter type

I have a templated class Matrix. I want to specialize a function for the type complex, where T can be anything. I have tried this : 6 template <typename T> 7 class Matrix { 8 public ...
5
votes
3answers
2k views

Instance variables vs. class variables in Python

I have Python classes, of which I need only one instance at runtime, so it would be sufficient to have the attributes only once per class and not per instance. If there would be more than one instance ...
5
votes
4answers
512 views

Storing a Method as a Member Variable of a Class in C#

I have this as one of my members of the class 'KeyEvent': private delegate void eventmethod(); And the constructor: public KeyEvent(eventmethod D) { D(); } What I want to do is ...
5
votes
7answers
1k views

what is a member vs. a property

A friend who is new to OO programming asked me the difference between a Member and Property, and I was ashamed to admit that I couldn't give him a good answer. Since properties can also be objects ...
5
votes
5answers
282 views

Nullable variable types - .value member

I was wondering - when would I want to use the .Value member on a nullable type instead of just calling the variable itself? e.g.. bool? b = true; why would i use b.Value to get the value instead ...
5
votes
6answers
3k views

C++: syntax for accessing member struct from pointer to class

I'm trying to access a member structs variables, but I can't seem to get the syntax right. The two compile errors pr. access are: error C2274: 'function-style cast' : illegal as right side of '.' ...
5
votes
6answers
12k views

getter and setter for class in class c#

Assuming we have a class InnerClass with attributes and getter/setter. We also have a class OuterClass containing the InnerClass. e.g. class InnerClass { private int m_a; private int m_b; ...
4
votes
2answers
79 views

Extension Method and Member Method : why each is implemented differently by compilers (internally)?

Consider this code: A a = null; a.f(); //Will it throw NullReferenceException? Will the above throw NullReferenceException? The answer is : it depends on what f() is. If it's a member method, ...
4
votes
1answer
94 views

How to make large numbers of existing functions available in the scope of a class?

I need to make a large (100's of source files) project into a library, removing dozens of global variables by putting them all into a class object. The problem is the thousand or so functions that ...
4
votes
5answers
88 views

C# accesing non static member in a static function

So I have a function: List<string> names = new string(); private static void getName(string name) { names.add(name); } When I attempt to compile I get a: 'object reference is required ...
4
votes
6answers
409 views

Incomplete type in class

I have a class that should have a private member of the same class. So like this - class A{ private: A member; } But it tells me that member is an incomplete type. Why? It doesn't tell ...
4
votes
2answers
274 views

How can I create a read only class member in Scala?

I want to create a Scala class where one of it's var is read only from outside the class, but still a var. How can I do it? If it was a val, there was no need to do anything, by default the ...
4
votes
1answer
156 views

Iterate member variables

Is there a way to iterate the member variables of an object in D2010 without knowing what they are beforehand?
4
votes
4answers
238 views

Static member object initialization failure

I have a static library with the following code: h file: class Foo { public: Foo() { a = 4; } int a; }; class Bar { public: static const Foo foo; }; cpp file: const ...
4
votes
5answers
852 views

C# binarysearch a list<T> by a member of T

I have a baseclass Event with a DateTime member TimeStamp. Lots of other event-classes will derive from this. I want to be able to search a list of events fast, so I'd like to use a binary search. ...
4
votes
4answers
1k views

C++ static template member, one instance for each template type?

Usually static members/objects of one class are the same for each instance of the class having the static member/object. Anyways what about if the static object is part of a template class and also ...
4
votes
8answers
2k views

how to pass a non static-member function as a callback?

io_iterator_t enumerator; kern_return_t result; result = IOServiceAddMatchingNotification( mNotifyPort, kIOMatchedNotification, IOServiceMatching( ...
4
votes
9answers
221 views

C++ member layout

Let's we have a simple structure (POD). struct xyz { float x, y, z; }; May I assume that following code is OK? May I assume there is no any gaps? What the standard says? Is it true for PODs? Is ...
4
votes
8answers
607 views

Generic Class Members in C#?

Hey, I think I have the wrong idea here, but I'm not sure what is best. I want a class with a member variable that can be of any type, depending on what is needed at the time. So far, I have something ...
4
votes
4answers
1k views

Java: Accessing private fields directly from another instance of the same class

I'm writing a equals(Object obj) function for a class. I see that it is possible to access the private fields of obj from the caller. So instead of using a getter: Odp other = (Odp) obj; if (! ...
4
votes
3answers
2k views

default visibility of C++ class/struct members

In C++, why is private the default visibility for members of classes, but public for structs?
4
votes
4answers
2k views

c# using setters or getters from base class

Is it recommended to set member variables of a base class to protected, so that subclasses can access these variables? Or is it more recommended to set the member variables to private and let the ...
4
votes
6answers
5k views

How do you pass a member function pointer?

I am trying to pass a member function within a class to a function that takes a member function class pointer. The problem I am having is that I am not sure how to properly do this within the class ...
3
votes
1answer
80 views

details list like in explorer.exe

I am having a problem finding a Delphi component to list items with some information as well just like the Windows file explorer does. Is there a component that I could use to make a list of names ...
3
votes
3answers
73 views

Creating a function from a member of an instance for another instance in python

Imagine that i have f which is a function of a member of a class instance: class A: def b(self): print 'hey' a = A() f = a.b If I have another instance of the same class, let's say c = ...
3
votes
5answers
172 views

In C++ can I reset the function pointer for an operator?

In C++ can I reset the function pointer for an operator? In particular I want to set the member function operator[] to use (or not use) bounds checking. I tried this with no luck: Is this even ...
3
votes
1answer
99 views

How to static_assert in member templates only when they are actually used?

Consider this simple class: template<class T> class Foo{ public: Foo(T const& val) : _val(val) {} template<class U> Foo(Foo<U> const&){ ...
3
votes
7answers
139 views

Difference between object->function() and object.function() in C++

Can anyone explain the different between doing something like: a->height(); and a.height(); Is there actually a difference?

1 2 3 4 5 6