Tagged Questions
The C++ Standard Library is a collection of classes and functions, which are written in the core language and part of the C++ ISO Standard itself, and which provides a number of conveniences.
42
votes
9answers
2k views
Is there “magic” in the STL?
Let me start with explaining what I mean with "magic". I will use two examples from Java:
Every class inherits (directly or indirectly) the Object class.
Operator overloading is not supported by ...
39
votes
5answers
3k views
What's this STL vs. “C++ Standard Library” fight all about? [closed]
Someone brought this article to my attention that claims (I'm paraphrasing) the STL term is misused to refer to the entire C++ Standard Library instead of the parts that were taken from SGI STL.
...
26
votes
6answers
793 views
Is there a range class in C++11 for use with range based for loops?
I found myself writing this just a bit ago:
template <long int T_begin, long int T_end>
class range_class {
public:
class iterator {
friend class range_class;
public:
long ...
18
votes
1answer
194 views
Is it legal to modify the result of std::string::op[]?
Consider the following from C++11:
[n3290: 21.4.5]: basic_string element access [string.access]
...
16
votes
1answer
207 views
How did malloc and calloc end up with different signatures? [closed]
Possible Duplicate:
Why calloc takes two arguments while malloc only one?
There are lots of resources describing the difference in functionality between malloc and calloc, but I can't ...
13
votes
5answers
5k views
How do I Search/Find and Replace in a standard string?
Is there a way to replace all occurrences of a substring with another string in std::string?
For instance:
void SomeFunction(std::string& str)
{
str = str.replace("hello", "world"); //< ...
11
votes
6answers
217 views
Why does the C++ standard algorithm “count” return a ptrdiff_t instead of size_t?
Why is the return type of std::count a ptrdiff_t?
Since count can never be negative, isn't size_t technically the right choice? And what if the count exceeds the range of ptrdiff_t since the ...
10
votes
5answers
277 views
Is it defined to provide an inverted range to C++ standard algorithms?
Consider standard algorithms like, say, std::for_each.
template<class InputIterator, class Function>
Function for_each(InputIterator first, InputIterator last, Function f);
As far as I can ...
10
votes
7answers
299 views
Simple way to split a sequence of null-separated strings in C++
I have a series of strings stored in a single array, separated by nulls (for example ['f', 'o', 'o', '\0', 'b', 'a', 'r', '\0'...]), and I need to split this into a std::vector<std::string> or ...
10
votes
1answer
623 views
C++0x Smart Pointer Comparisons: Inconsistent, what's the rationale?
In C++0x (n3126), smart pointers can be compared, both relationally and for equality. However, the way this is done seems inconsistent to me.
For example, shared_ptr defines operator< be ...
9
votes
5answers
419 views
Overload resolution failure when streaming object via implicit conversion to string
Disclaimer: I know that implicit conversion to string should be avoided, and that the proper approach would be an op<< overload for Person.
Consider the following code:
#include ...
9
votes
3answers
389 views
passing rvalues through `std::bind`
I want to pass an rvalue through std::bind to a function that takes an rvalue reference in C++0x. I can't figure out how to do it. For example:
#include <utility>
#include <functional>
...
8
votes
4answers
496 views
Is max(a,b) defined in stdlib.h or not?
I'm using two computers, each with a different version of visual studio. On the visual studio 2008 computer my code compiles. On the visual 2010 computer my code doesn't compile because I'm using the ...
8
votes
8answers
4k views
Faster way to zero memory than with memset?
I learned that memset(ptr, 0, nbytes) is really fast, but is there a faster way (at least on x86)?
I assume that memset uses mov, however when zeroing memory most compilers use xor as it's faster, ...
7
votes
4answers
230 views
How can I get a list of all the Python standard library modules
I want something like sys.builtin_module_names except for the standard library. Other things that didn't work:
sys.modules - only shows modules that have already been loaded
sys.prefix - a path that ...
7
votes
3answers
305 views
Implementing atomic<T>::store
I'm attempting to implement the atomic library from the C++0x draft. Specifically, I'm implementing ยง29.6/8, the store method:
template <typename T>
void atomic<T>::store(T pDesired, ...
6
votes
2answers
205 views
std::vector differences
How does one determine what the differences of 2 vectors are?
I have vector<int> v1 and vector<int> v2;
What I am looking for is a vector<int> vDifferences that contains only ...
6
votes
3answers
144 views
How to allow a std:string parameter to be NULL?
I have a function foo(const std::string& str); that it does crash if you call it using foo(NULL).
What can I do to prevent it from crashing?
6
votes
3answers
795 views
do I need to close a std::fstream? [closed]
Possible Duplicate:
Do I need to manually close a ifstream?
Hi,
do I need to call fstream.close() or is fstream a proper RAII object that closes the stream on destruction?
I have an local ...
5
votes
4answers
145 views
std::lexical_cast - is there such a thing?
Does the C++ Standard Library define this function, or do I have to resort to Boost?
I searched the web and couldn't find anything except Boost, but I thought I'd better ask here.
5
votes
4answers
1k views
Why is there no strtoi in stdlib.h?
I have grown accustomed to strtod and variants.
I am wondering why there is no strtoi shipped with stdlib.h.
Why is it that the integer is left out of this party?
Specifically I am asking why there ...
5
votes
4answers
201 views
Why does the standard library have find and find_if?
Couldn't find_if just be an overload of find? That's how std::binary_search and friends do it...
5
votes
2answers
477 views
Why does stdlib.h's abs() family of functions return a signed value?
The negative implication of this is noted in the man page:
NOTES
Trying to take the absolute value of the most negative integer is
not
defined.
What's the reasoning behind ...
5
votes
4answers
3k views
Is os.popen really deprecated in Python 2.6?
The on-line documentation states that os.popen is now deprecated. All other deprecated functions duly raise a DeprecationWarning. For instance:
>>> import os
>>> [c.close() for c in ...
5
votes
5answers
1k views
Are strtol, strtod unsafe?
It seems that strtol() and strtod() effectively allow (and force) you to cast away constness in a string:
#include <stdlib.h>
#include <stdio.h>
int main() {
const char *foo = "Hello, ...
5
votes
3answers
457 views
Evil code from the Python standard library
So, we have had this: http://lucumr.pocoo.org/2009/3/1/the-1000-speedup-or-the-stdlib-sucks. It demonstrates a rather bad bug that is probably costing the universe a load of cycles even as we speak. ...
5
votes
5answers
3k views
Why can't gcc find the random() interface when -std=c99 is set?
I do "#include <stdlib.h>" at the top of the source.
Example compilation:
/usr/bin/colorgcc -std=c99 -fgnu89-inline -g -Wall -I/usr/include -I./ -I../ -I../../ -I../../../ -I../../../../ ...
4
votes
2answers
62 views
Different behaviour between std deque/vector in MSVCC/g++/icc
I have this very simple piece of code;
#include <deque>
#include <vector>
using namespace std;
class A
{
public:
A(){};
~A(){};
deque<A> my_array; // vector<A> ...
4
votes
4answers
232 views
Fast set union of integer
I need to make lots of unions of ordered set of integers (I would like to avoid duplicates, but it is okay if there are).
This is the code with the best performance so far :
// some code added for ...
4
votes
3answers
151 views
How to free c++ memory vector<int> * arr?
I have a vector<int>* arr, which is actually a 2D array.
arr = new vector<int> [size];
Is it ok that I just do
delete arr;
Will arr[i] be automatically be deleted, since it is a ...
4
votes
2answers
213 views
Why might std::bind1st be considered “almost unusable”?
During a conversation on boost::bind, it was noted that std::bind1st exists in C++03, but that it is "almost unusable".
I can't find anything solid to back this up.
The boost::bind documentation ...
4
votes
9answers
714 views
Is stdlib's qsort recursive?
I've read that qsort is just a generic sort, with no promises about implementation. I don't know about how libraries vary from platform to plaform, but assuming the Mac OS X and Linux implementations ...
4
votes
2answers
515 views
How to pass parameters with spaces via cstdlib system
I have this windows console app which takes a file, do some calculations, and then writes the output to a specified file. The input is specified in "app.exe -input fullfilename" format. I need to call ...
4
votes
4answers
1k views
fgets() function in C
I know everybody has told me to use fgets and not gets because of buffer overflow. However, I am a bit confused about the third parameter in fgets(). As I get it, fgets is dependent on:
char * fgets ...
4
votes
5answers
7k views
Ambiguous overload call to abs(double)
I have the following C++ code:
#include <math.h>
#include <cmath.h> // per http://www.cplusplus.com/reference/clibrary/cmath/abs/
// snip ...
if ( (loan_balance < 0) && ...
4
votes
3answers
3k views
boost::shared_ptr standard container
Assume I have a class foo, and wish to use a std::map to store some boost::shared_ptrs, e.g.:
class foo;
typedef boost::shared_ptr<foo> foo_sp;
typeded std::map<int, foo_sp> foo_sp_map;
...
3
votes
2answers
110 views
Whats the difference between std::condition_variable and std::condition_variable_any?
I'm probably missing something obvious, but I can't see any difference between between std::condition_variable and std::condition_variable_any. Why do we need both?
3
votes
2answers
118 views
Accumulate result from member function of elements in a container
I have a class, with a function which returns a count, like this:
class CTestClass
{
public:
// ...
size_t GetCount()const;
// ...
};
And somewhere in my program I have a vector of ...
3
votes
4answers
169 views
Can we rely on the reduce-capacity trick?
Is it actually guaranteed anywhere that the following reduce-capacity trick will "work"?
int main() {
std::string s = "lololololol";
s = ""; // capacity still non-zero
...
3
votes
1answer
153 views
How to inspect std::string in GDB with no source code?
I'm trying to debug a program that has no source code available, and I need to look at what it has stored in a std::string. I've been Googling and looking on here, and I've found some information ...
3
votes
3answers
2k views
Are types like uint32, int32, uint64, int64 defined in any stdlib header?
I often see source code using types like uint32, uint64 and I wonder if they should be defined by the programmer in its application code or it's defined in a standard lib header.
What's the best way ...
3
votes
3answers
756 views
Using qsort() with class pointers
I am using the in-built function qsort() to sort a vector of class item pointers.
class item {
int value;
vector<char> c;
...
...
};
//Declaration of vector
vector<item*> items;
...
3
votes
4answers
274 views
proper factory pattern in C++
in C# you have to declare everything in a class so an example factory pattern could look like:
namespace MySpace {
public class CFactory
{
public static CFactory Current()
{
static CFactory ...
3
votes
2answers
76 views
Python generator that groups another iterable into groups of N
I'm looking for a function that takes an iterable i and a size n and yields tuples of length n that are sequential values from i:
x = [1,2,3,4,5,6,7,8,9,0]
[z for z in TheFunc(x,3)]
gives
...
3
votes
2answers
461 views
Why is the endptr parameter to strtof and strtod a pointer to a non-const char pointer?
The standard C library functions strtof and strtod have the following signatures:
float strtof(const char *str, char **endptr);
double strtod(const char *str, char **endptr);
They each decompose ...
3
votes
4answers
291 views
std::string and its automatic memory resizing
I'm pretty new to C++, but I know you can't just use memory willy nilly like the std::string class seems to let you do. For instance:
std::string f = "asdf";
f += "fdsa";
How does the string class ...
3
votes
6answers
413 views
Does stdlib's rand() always give the same sequence?
I quite like being able to generate the same set of pseudo-random data repeatedly, especially with tweaking experimental code. Through observation I would say that rand() seems to give the same ...
3
votes
4answers
555 views
stdlib and colored output in C
I am making a simple application which requires colored output. How can I make my output colored like emacs and bash do?
I don't care about Windows, as my application is only for UNIX systems.
...
3
votes
7answers
1k views
Why do ZeroMemory, etc. exist when there are memset, etc. already?
Why does ZeroMemory, and similar calls exist in the Windows API when there are memset and related calls in the C standard library already? Which ones should I call? I can guess the answer is ...
3
votes
2answers
1k views
What's the difference between cstdlib and stdlib.h?
When writing C++ code is there any difference between:
#include <cstdlib>
and
#include <stdlib.h>
other than the former being mostly contained within the std:: namespace?
Is there ...