Search Results
| Search type | Search syntax |
|---|---|
| Tags | [tag] |
| Exact | "words here" |
| Author |
user:1234 user:me (yours) |
| Score |
score:3 (3+) score:0 (none) |
| Answers |
answers:3 (3+) answers:0 (none) isaccepted:yes hasaccepted:no inquestion:1234 |
| Views | views:250 |
| Code | code:"if (foo != bar)" |
| Sections |
title:apples body:"apples oranges" |
| URL | url:"*.example.com" |
| Saves | in:saves |
| Status |
closed:yes duplicate:no migrated:no wiki:no |
| Types |
is:question is:answer |
| Exclude |
-[tag] -apples |
| For more details on advanced search visit our help page | |
Results tagged with c++
Search options not deleted
user 30470
Questions about C++, a statically typed, free-form, multi-paradigm, compiled, general-purpose programming language.
2
votes
4
answers
2k
views
How to provide a ubiquitous object without including it in every parameter list
I'm writing a small C++ class, Block, to transform serialized data into a memory structure, and supply the structured data to callers through several accessor methods. I've tried to keep its scope sp …
10
votes
1
answer
3k
views
"C++ Templates: The Complete Guide" (c) 2002 -- up to date with C++11?
The book C++ Templates: The Complete Guide, (c) 2002, looks very appealing to me, but as it's 12 years old, I'm concerned it may be out of date. There are some highly favorable Amazon reviews dated a …
11
votes
3
answers
11k
views
Concrete types - as described by Stroustrup - C++ Programming Language 4th ed
I'm having a hard time with this concept. What is Stroustrup getting at here? What is special about a class whose "representation is part of its definition"? What does a "concrete type" contrast wit …
2
votes
Rewriting IBM assembler + COBOL in C++
As to the technical aspect, a lot will depend upon the quality - the modularity - of the assembler code. Some programmers understood the importance of creating modules with specific, limited function …