Tagged Questions

92
votes
4answers
23k views

What are POD types in C++?

I've been following SO for a bit now, and I've come across this term POD-type a few times... what does it mean?
29
votes
2answers
2k views

What are Aggregates and PODs and how/why are they special?

This FAQ is about Aggregates and PODs and covers the following material: What are Aggregates? What are PODs (Plain Old Data)? How are they related? How and why are they special? What changes for ...
17
votes
5answers
272 views

Why can it be dangerous to use this POD struct as a base class?

I had this conversation with a colleague, and it turned out to be interesting. Say we have the following POD class struct A { void clear() { memset(this, 0, sizeof(A)); } int age; char ...
15
votes
2answers
250 views

trivial vs. standard layout vs. POD

In layman's terms, what's the difference between trivial types, standard layout types and PODs? Specifically, I want to determine whether new T is different from new T() for any template parameter T. ...
15
votes
3answers
338 views

C++ Any way to programmatically detect POD-struct?

I have data structure which stores POD-structs (each instantiation stores a single type only, since it is basically an array of a specific POD-struct). Sometimes another dev. will modify one of these ...
15
votes
3answers
1k views

PODs, non-PODs, rvalue and lvalues

Could anyone explain the details in terms of rvalues, lvalues, PODs, and non-PODs the reason why the first expression marked below is not ok while the second expression marked below is ok? In my ...
11
votes
6answers
314 views

Do I need to make a type a POD to persist it with a memory-mapped file?

Pointers cannot be persisted directly to file, because they point to absolute addresses. To address this issue I wrote a relative_ptr template that holds an offset instead of an absolute address. ...
11
votes
4answers
292 views

Default initialization in C++

I was asking myself something this morning, and I can't find the words to properly "google" for it: Lets say I have: struct Foo { int bar; }; struct Foo2 { int bar; Foo2() {} }; struct ...
10
votes
6answers
382 views

Why is C++11's POD “standard layout” definition the way it is?

I'm looking into the new, relaxed POD definition in C++11 (section 9.7) A standard-layout class is a class that: has no non-static data members of type non-standard-layout class (or array ...
8
votes
1answer
94 views

How to compare objects of POD types

This example : #include <iostream> #include <cstring> struct A { int a; bool b; }; bool foo( const A a1, const A a2 ) { return ( 0 == std::memcmp( &a1, &a2, sizeof( ...
8
votes
4answers
701 views

Why no default move-assignment/move-constructor?

I'm a simple programmer. My class members variables most often consists of POD-types and STL-containers. Because of this I seldom have to write assignment operators or copy constructors, as these are ...
7
votes
7answers
1k views

Is delete[] equal to delete?

IP_ADAPTER_INFO *ptr=new IP_ADAPTER_INFO[100]; if i free using delete ptr; will it lead to memory leak, if not then why ? This is disassembly code generated by VS2005 **delete ptr;** 0041351D ...
6
votes
2answers
224 views

C++ : how do I use type_traits to determine if a class is trivial?

In C++0x, I would like to determine if a class is trivial/has standard layout so I can use memcpy(), memset(), etc... How should I implement the code below, using type_traits, so I can confirm that ...
6
votes
5answers
4k views

How are objects stored in memory in C++?

How are objects stored in memory in C++? For a regular class such as class Object { public: int i1; int i2; char i3; int i4; private: }; Using a pointer of Object as an ...
5
votes
5answers
302 views

C++: POD Pros\Cons

What are the pros and cons of using Plain Old Data (POD) structs\classes in C++? In what cases should one prefer using them over non-PODs? Specifically, do PODs have advantages while working with ...
4
votes
3answers
545 views

Can't C++ POD type have any constructor?

I have a class and a const variable. struct A { int b; }; A const a; The class A is POD and can be initialized like this. A const a = { 3 }; IMHO, it looks fine to have a constructor like ...
3
votes
3answers
71 views

Template Specialization for basic POD only

Is there a subtle trick for template specialization so that I can apply one specialization to basic POD (when I say basic POD I don't particularly want struct POD (but I will take that)). ...
3
votes
1answer
87 views

How to force value initialization for POD types in Visual C++ without changing code?

Is there any way to force initialization of pod types to 0\false\nullptr in Visual C++ release mode? To be more specific, I don't want to change my code, just have it compiled with pod types ...
3
votes
1answer
325 views

Is this struct POD in C++11?

Is this struct a POD in C++11? struct B { int a; B(int aa) : a(aa) {} B() = default; }; Note that this question is explicit about C++11. I know that this class is not a POD in C++98 nor ...
3
votes
0answers
72 views

Is it guaranteed to safe passing [c++] POD types to [c] or vise versa? [closed]

Possible Duplicate: C++ Class or Struct compatiblity with C struct I read this FAQ: What are Aggregates and POD's and how/why are they special? , and got a following question. Is it ...
3
votes
3answers
120 views

is it possible to delete C POD using delete in C++?

Having structs like struct ifoo_version_42 { int x, y, z; char *imageData; }; where imageData is something like imageData = new char[50000]; Can we perform something like template< ...
3
votes
1answer
274 views

Plain Old Data types with private members?

Is Demo a POD type in C++03? struct Demo { private: int x; int y; }; C++03, §9p4: A POD-struct is an aggregate class that has no non-static data members of type ...
3
votes
1answer
725 views

Why is creating a ring buffer shared by different processes so hard (in C++), what I am doing wrong?

I am being especially dense about this but it seems I'm missing an important, basic point or something, since what I want to do should be common: I need to create a fixed-size ring buffer object from ...
3
votes
4answers
2k views

union members may not have constructors, but `std::pair` okay?

union members may not have destructors or constructors. So I can't template the following class Foo on my own MyClass if MyClass has a constructor: template<class T> struct Foo { T val; ...
3
votes
1answer
520 views

POD class initialized with placement new default initialized?

If I initialize a POD class with placement new, can I assume that the memory will be default initialized (to zeros)? This resource clearly states that if you call the zero argument default constructor ...
3
votes
3answers
2k views

Using SFINAE to detect POD-ness of a type in C++

The original title here was Workaround for SFINAE bug in VS2005 C++ This is tentative use of SFINAE to make the equivalent for the is_pod template class that exists in TR1 (In VS2005 there's no TR1 ...
2
votes
1answer
60 views

How do I detect bitwise-moveable types using type traits in Visual C++ 9?

I have an std::vector-like class that is compiled with Visual C++ 2008. There's a piece in that class where stored elements are moved - either the body is reallocated or an insertion/partial erasure ...
2
votes
1answer
76 views

Strange behavior of default constructor in a class inherited from POD struct

This question relates to this one. As I mentioned in previous question I've decided to inherit my class from Win structure BITMAP to provide some extended functionality. I've noticed interest detail ...
2
votes
2answers
70 views

If a POD is wrapped inside a class, does it give the same effect?

Following are 2 different interpretations: char c; // 1 struct MyChar { char c; }; // 2 If I do new MyChar[100], will it allocate 100 bytes in all platform ? Adding non-virtual ...
2
votes
4answers
270 views

memcpy of a part of a struct

I have a struct/class which is partiall Plain Old Data (POD). struct S { // plain-old-data structs with only arrays and members of basic types (no pointers); Pod1 pod1; Pod2 pod2; Pod3 pod3; ...
2
votes
3answers
169 views

Can a class with all private members be a POD class?

I've heard before that POD types cannot have private data -- but according to the C++0x draft I have the requirement is looser (emphasis mine): has the same access control (Clause 11) for all ...
2
votes
3answers
236 views

C++: POD and POD-wrapping objects

Often I declare classes to wrap a single Plain Old Data value; simple classes without virtual functions, like: class Velocity { int vel; public: // functions to work with velocity ... } ...
2
votes
2answers
231 views

relation between access specifiers and using initializer lists for POD types in c++0x

take two following classes: class Test1{ public: Test1()=default; Test1(char in1,char in2):char1(in1),char2(in2){} char char1; char char2; }; class Test2{ public: Test2()=default; ...
2
votes
3answers
2k views

How to expose STL list over DLL boundary?

I have a DLL which needs to access data stored in STL containers in the host application. Because C++ has no standard ABI, and I want to support different compilers, the interface between the ...
1
vote
1answer
98 views

Is it possible to implement a class in such a way that it would be possible to value initialize it as if it was POD

I have a class (let's name it TheClass) that is quite often used in the following situation: several instances are constructed from constants and passed as several arguments to some other constructor. ...
1
vote
2answers
75 views

Multiple inheritance and the this pointer

Suppose I have this struct: struct vector_data { double x, y; double& operator[](size_t index) { return * (static_cast<double*>(static_cast<void*>(this)) + ...
1
vote
2answers
89 views

Is it recommendable to use placement new when constructing an POD-object from a dynamically created array?

Given any POD type, is it recommendable to do something like that: any_pod* p = new any_pod[n]; for (std::size_t i = 0; i < n; ++i) new (&p[i].member) other_pod(whatever);
1
vote
1answer
105 views

Defining copy constructor in a class inherited from POD struct

As you know compiler defines default constructor, copy constructor, assignment operator and destructor for POD structures if it weren't defined manually. Usually (or maybe should I say always) it's a ...
1
vote
4answers
133 views

Casting big POD into small POD - guaranteed to work?

Suppose I've a POD struct which has more than 40 members. These members are not built-in types, rather most of them are POD structs, which in turn has lots of members, most of which are POD struct ...
1
vote
2answers
129 views

POD and templates

is this a POD? template <class T> struct Data { float val_f; T val_t; int val_i; }; If i have a C function that requires something like: struct Data { float val_f; double ...
1
vote
0answers
44 views

Good Auto-generation of POD from a Schema?

All, Does anyone know of a tool that can create vanilla POD-like C++ structures from a Schema description? Important qualities are: reasonable to use as "first class citizens" inside of the code. ...
1
vote
6answers
1k views

C++ - struct vs. class [closed]

Possible Duplicates: C/C++ Struct vs Class What are POD types in C++? Hi, In the C++ In a Nutshell book, in chapter 6: classes, unders Access specifiers, mentioned the following: In ...
1
vote
3answers
393 views

c++ POD initialization

I've read about POD objects in C++. I wanna have a POD struct to be written into a file. So it should have only public data with no ctors/dtors etc. But as far as i know it can have static function in ...
0
votes
1answer
76 views

C++ template specialization for N + 4 types?

I have a struct like template<typename T> struct S { T value; void Set(const T& val) { value = val; } void Foo(); } T can be int, float, char, short and long long or one of ...
0
votes
4answers
294 views

c++ static POD initialization

I have a single instance of a simple POD a.hpp class A { struct Zzz { A* m_aPtr; int m_val; } static Zzz s_zzz; }; a.cpp A::Zzz A::s_zzz; I expect that both ...
0
votes
4answers
524 views

POD global object initialization

I've got bitten today by a bug. Question for the C++ lawyers Let's consider the following source : struct MyPod { short m_short ; const char * const m_string ; } ; MyPod ...
0
votes
2answers
70 views

Ok to provide constructor + trivial operators for behaviorless aggregates?

This is a follow-up question to 2043381. Consider the following: struct DataBundle { std::string name; int age; DataBundle() : age(0) {} DataBundle(const std::string& name, int age) ...