0
votes
8answers
312 views
What if I dislike C++ Standard Library? [closed]
I am not accustomed to iostream,and think string is not easy to deal with.So is it possible to develop C++ programs without C++ Standard Library or at least with little use of C++ …
1
vote
1answer
45 views
MSVC _open/_close/etc
Why are the API's _open, _close, and other standard file i/o functions prefixed with an underscore? Aren't these part of some standard?
12
votes
13answers
530 views
Most useful Python modules from the standard library?
I am teaching a graduate level Python class at the University of Paris, and the students need to be introduced to the standard library. I want to discuss with them about some of t …
6
votes
8answers
382 views
Does C or C++ have a standard regex library?
Does it? If yes, where can I get the documentation for it... if not, then which would be the best alternative?
2
votes
2answers
120 views
How does Java make its windows?
How does the JVM make it's windows, i know it has it's jar files and the executables, etc...
what i would like to know is how exactly is a window made with java, the frame surround …
5
votes
6answers
879 views
trim is not part of the standard c/c++ library ?
Is it me or are there no standard trim functions in the c or c++ library? is there any single function that acts as a trim? If not can anyone tell me Why trim is not part of the st …
4
votes
6answers
148 views
Where can I see the list of functions that interact with errno?
In the book "The C Programming Language" it says:
"Many of the functions in the library set status indicators when error or end of file occur. These
indicators may be set and …
3
votes
5answers
530 views
Are these appropriate practices when working with std::map?
I have some questions on using std::map:
Is using an enum as the key in std::map a good practice? Consider the following code: enum Shape{
Circle,
Rectangle
};
int main( …
2
votes
6answers
323 views
How to workaround the inconsistent definition of numeric_limits<T>::min()?
The numeric_limits traits is supposed to be a general way of obtaining various type infomation, to be able to do things like
template<typename T>
T min(const std::vector< …
1
vote
2answers
367 views
How do I use C++ STL containers in My iPhone App?
I'd like to use an STL set in my iPhone app (which is written in Objective-C in XCode). How do I include set and/or use the standard namespace?
In C++ I'd do this:
#include<s …
1
vote
6answers
381 views
How can I get rid of the warning with rand()? (C++)
Whenever I use the rand function in C++:
#include<iostream>
#include<time.h>
#include<stdlib.h>
using namespace std;
int main(){
srand(time(0));
int n=(rand()%6) …
6
votes
4answers
233 views
What is the current status of D standard libraries?
There are two of them Phobos and Tango.
As far as I know they are redundant and incompatible.
Are there any plans to join them?
If so, when will it happen?
4
votes
20answers
1k views
Good Idea / Bad Idea Should I Reimplement Most Of C++?
Recently, I've got a dangerous idea into my head after reading this blog post. That idea can be expressed like this:
I don't need most of what the C++ standard library offers. So, …
2
votes
7answers
194 views
How can I easily work with a char**?
I have a char** that I frequently need to insert into or perform a lookup. It is very tedious to realloc(), malloc() the array and insert strings.
Is there any standard way that I …
4
votes
5answers
419 views
How does memchr() work under the hood?
Background: I'm trying to create a pure D language implementation of functionality that's roughly equivalent to C's memchr but uses arrays and indices instead of pointers. The re …
