The empty-class tag has no wiki summary.
10
votes
2answers
168 views
why a const object of an empty class cant be created
#include <iostream>
class A {
public:
void foo() const {
std::cout << "const version of foo" << std::endl;
}
void foo() {
std::cout << ...
7
votes
3answers
248 views
Handles Comparison: empty classes vs. undefined classes vs. void*
Microsoft's GDI+ defines many empty classes to be treated as handles internally. For example, (source GdiPlusGpStubs.h)
//Approach 1
class GpGraphics {};
class GpBrush {};
class GpTexture : public ...
4
votes
2answers
398 views
python empty class object
I'm teaching a python class on Object Oriented Programming and as I'm brushing up on how to explain Classes, I saw an empty class definition:
class Employee:
pass
the example then goes on to ...
3
votes
8answers
965 views
what is the size of empty class in C++,java?
What is the size of an empty class in C++ and Java?
Why is it not zero?
sizeof(); returns 1 in the case of C++.
0
votes
1answer
150 views
Can we detect empty classes in C++03? [closed]
Possible Duplicate:
Is there an easy way to tell if a class/struct has no data members?
Can we detect emply classes, possibly using template?
struct A {};
struct B { char c;};
std::cout ...