Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
12
votes
8answers
4k views

What's the best way to document Perl code?

Any suggestion how I can document my Perl code? What do you use and what tools are available to help me? Which module do you use to convert pod to html?
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 ...
8
votes
3answers
508 views

Is there a WYSIWYG Perl Pod editor?

Is there an easy to use "what-you-see-is-what-you-get" editor for Pod available? I'm not that used to the Pod syntax yet so having the option of writing the Pod and immediatly see what the output ...
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
4answers
524 views

Are there any conventions for writing POD comments for Perl?

I was able to find a page from Safari Books Online that provides a template, but having never written POD comments, I'm not sure how good it is or if it is missing anything that might be considered ...
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 ...
5
votes
5answers
232 views

Perl documentation (POD) browsers?

I'm looking for is a good on-screen POD reading experience. For years, I've used perldoc or man running in an xterm to read Perl documentation on screen, and a small custom program built around ...
4
votes
2answers
70 views

What is the correct syntax for producing http links with custom text with pod2html?

The perlpod documentation tells me that I can link to URLs using L<scheme:...> or L<text|scheme:...>, it even lists L<The Perl Home Page|http://www.perl.org/> as an example. The ...
4
votes
2answers
194 views

C++0x Member initialization without a constructor

In N3257 I found an example using initializing members without a constructor, which is fine. I guess that is possible, because it is a POD. template<typename T> struct adaptor { ...
4
votes
3answers
547 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 ...
4
votes
3answers
213 views

Is there really no better way to document perl code than POD?

I'm a perl programmer for a long time. But I always have problems with documentation in POD. When I use POD comment in the code the code is difficult to read. When I use POD comments at the end of ...
4
votes
1answer
80 views

Is there a Perl module that can split one master Pod file into several views?

I want to write one Pod file for perlop and perlopref. My gut instinct is to say something like =head1 PRECEDENCE blah =head1 OPERATORS =head2 "X" =for short The double quote circumflex ...
4
votes
2answers
117 views

POD multilanguage documentation

Is there any way to write multilanguage documentation using POD? If no, what should I write it in (I already have POD documentation in English, so I will want to convert it and then translate)?
4
votes
2answers
2k views

How to create POD and use pod2usage in perl?

I want to create a POD for my own custom command and display the syntax for that using pod2usage() function.. Can anyone give me a simple example for it? Regards, Anandan
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
1answer
257 views

Is there a simple way to write an ODT using Python?

My point is that using either pod (from appy framework, which is a pain to use for me) or the OpenOffice UNO bridge that seems soon to be deprecated, and that requires OOo.org to run while launching ...
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
2answers
138 views

What's the recommended way of handling complexly composed POD(plain-old-data in OO) in Haskell?

I'm a Haskell newbie. In statically typed OO languages (for instance, Java), all complex data structures are presented as class and instances. An object can have many attributes (fields). And another ...
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
3answers
295 views

How can I have link text with a URL in Pod's L<>?

The L<name> formatting code allows you to set the display text for the link if you're linking to other POD, as in L<Display Text|link_dest>, but this isn't allowed for L<scheme:...> ...
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
1k views

Box2d - Variable length array of non-POD element type 'b2Vec2'

I'm working on a importer for a game of mine, it reads an xml and then creates the box2d bodies for everything. For example <polygon vertexCount="3" density="0" friction="0.25" ...
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
2answers
127 views

Online Perl POD renderer

I seem to remember an "offical" site (perl.org or cpan.org) which had a POD previewer. One uploaded a file and it would display the contained POD as it would appear on CPAN. Does someone have this ...
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
1answer
119 views

How can I get rid of empty lines Perl's Pod so they don't show up with Pod::Usage?

I have following pod which I used with getopt::long: =head1 SYNOPSIS foo [OPTION]... [URL]... =head1 OPTIONS =over 20 =item B<-h, --help> Print a brief help message and exits. =item ...
2
votes
1answer
692 views

How to: create .doc files using templates with django/python

I am writing a django application and there is something I don't know how to do. Say you have a database with users and several .doc files you might want to send to those users (postal letters, not ...
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; ...

1 2