The standard library contains core utilities provided by all implementations of the language.
0
votes
2answers
60 views
Which C/C++ compiler dose Xcode use?
I just started to get my hands dirty with C/C++ and still getting my head around the different concepts (most my time I have been writing Java). I'd really like to know which C/C++ compiler is used ...
2
votes
0answers
65 views
Why is the second argument of the function std::polar optional?
A friend of mine was using the function std::polar believing that it takes only one argument, which corresponds to the argument (how confusing!) of the returned complex number. As you know, this is ...
1
vote
1answer
28 views
How do directories in the NDK home folder relate to the NDK version?
My $NDK_HOME folder contains different implementations of the standard library.
qdii@nomada /opt/android-ndk/platforms $ ls -l
total 24
drwxr-xr-x 5 root android 4096 3 déc. 19:18 android-14
...
0
votes
2answers
48 views
A full list of special double-underscore properties in standard python libraries?
Would anyone have a list of special python properties that begin and end with a double underscore with a brief explanation of their functionality?
Something along the following lines:
{
...
6
votes
4answers
89 views
How do different languages implement sorting in their standard libraries? [closed]
From what I have (briefly) read, Java and Python both look like they make use of timsort in their standard libaries, while the sorting method in C's stdlib is called qsort because it once was ...
-2
votes
2answers
77 views
What are the C++ standard libraries available for linux? [closed]
Beside:
http://gcc.gnu.org/libstdc++/
http://libcxx.llvm.org/ ( works for the most part but it's a WIP )
what other options do I have ?
EDIT: I'm excluding stdcxx from Apache because it's not ...
2
votes
1answer
80 views
why are there so many versions of header files in my system?
I learned to program with Pascal in high school, and more recently I decided to get out of the sandbox and try to figure out how my computer actually works. So I installed ubuntu on my iMac (i686) ...
0
votes
1answer
103 views
Why is the c++ standard library not working?
I've been trying to get my program that I downloaded from my schools server to run offline on my mac. I tried updating GCC by following tutorials and for some reason the tutorials didn't work even ...
0
votes
1answer
39 views
C++ Sys/Stat.h has an error?
I'm trying to create a cross-platform program. I just created a class and made a function which gets the path of the current user. I wanted to use that path later. But somehow I get these errors :
...
1
vote
5answers
67 views
copying contents of a text file in c
I want to read a text file and transfer it's contents to another text file in c, Here is my code:
char buffer[100];
FILE* rfile=fopen ("myfile.txt","r+");
...
37
votes
5answers
960 views
Are int8_t and uint8_t intended to behave like a character?
Given this C++11 program, should I expect to see a number or a letter? Or not make expectations?
#include <cstdint>
#include <iostream>
int main()
{
int8_t i = 65;
std::cout ...
1
vote
2answers
54 views
How to fill a online form automatically using ruby?
I am wondering how I can fill an online form automatically . I am new to ruby development , done this with python .
More Specifically i want to enter 10 digit pnr no "http://irctc-pnr-status.com/" ...
2
votes
3answers
140 views
numeric_limits lowest and min member functions
numeric_limits<T>::min();
numeric_limits<T>::lowest();
What is the different between the value returned by both functions?
2
votes
1answer
50 views
How to use bind with abstract class passed by reference
I'm trying to use std::transform with std::bind to simplify a loop. Here's some code:
class ITest
{
public:
virtual CPrueba Prueba(double p, double d = 0)const = 0;
};
void foo(const ITest& ...
1
vote
0answers
79 views
Error in xutility when including <string>
Got a very simple C++ VC9 project, it consists of a header file and a source file,
#ifndef t_h
#define t_h
#include <string>
std::string foo();
#endif // t_h
and
#include "t.h"
std::string ...
0
votes
0answers
39 views
How to get root dependency of standford parser in java?
String sentence=args;
LexicalizedParser lp = LexicalizedParser.loadModel("edu/stanford/nlp/models/lexparser/englishPCFG.ser.gz");
lp.setOptionFlags(new String[]{"-maxLength", "300", ...
4
votes
2answers
188 views
When should I use std::bind?
Every time I need to use std::bind I end up using a lambda instead. So when should I use it? I just finished removing it from one codebase and lambda's where always simpler and clearer than std::bind. ...
0
votes
2answers
74 views
Using putchar and printf together in the same C Program?
I've written a small C program where I wanted to display the numeric ASCII value that corresponds to certain key presses.
My code follows. The problem is, after running the program, it accepts input, ...
6
votes
2answers
359 views
Does std::mt19937 require warmup?
I've read that many pseudo-random number generators require many samples in ordered to be "warmed up". Is that the case when using std::random_device to seed std::mt19937, or can we expect that it's ...
1
vote
2answers
62 views
Is there a reason why Python standard library packages/modules are not in a package named python?
as it is done in Java... This makes the task of asserting if a package/module belongs to the standard library trivial. I'd guess this is just a convention. Are there any plans to change this in the ...
4
votes
2answers
105 views
Quicksort or O(N.logN) sort in jdk [duplicate]
Is there a quicksort, or another O(N.logN) sort, available in the jdk standard library?
Collections class doesn't bring hope:
Implementors should feel free to substitute other algorithms, so long ...
6
votes
4answers
172 views
Was gets ever useful? [closed]
It seems to me, people, especially when learning the C programming language, are still using the gets function to read in data from stdin. Despite that it has now been removed1 from the C11 standard, ...
2
votes
1answer
43 views
How do I get an actual word Iterator wrapping breakIterator?
I'm using java.text.breakIterator for iterating words (which is not an iterator, yes I've noticed, no need to tell me that). Why can't I get it as an actual iterator? i.e. why can't I do:
...
0
votes
1answer
94 views
C++ ofstream delete and cleanup
I am writing a C++ ofstream that sometimes must be cleaned up - the file I am writing to should be deleted and the class deleted and cleaned up.
How? (Except closing it and deleting it by name).
...
0
votes
3answers
178 views
System calls not working in Atmel AVR Studio (with ASF)
I am not getting answers on the AVR Freaks forum and wonder if someone here could help me.
The answer might lie in this SO question, but I am not sure why it would be necessary.
Basically, I have my ...
8
votes
3answers
198 views
Should I call reset() on my C++ std random distribution to clear hidden state?
I would like to wrap the random number distributions from the C++11 standard library with simple functions that take as arguments the distribution's parameters and a generator instance. For example:
...
6
votes
5answers
240 views
Reading a text file backwards in C
What's the best way to read a file backwards in C? I know at first you may be thinking that this is no use whatsoever, but most logs etc. append the most recent data at the end of the file. I want to ...
0
votes
1answer
86 views
Scala standard library: “Explicit instantiation to reduce class file size in subclasses”
In the Scala standard library there are several occurrences of the pattern "Explicit instantiation to reduce class file size in subclasses". Here for instance in Iterator.scala:
/** Explicit ...
5
votes
2answers
154 views
C++: Is all of “std” cross platform?
I keep trying different search terms for this question and I'm just finding noise on both Google and stackoverflow. If I write code using C++'s standard library (std), is it all basically guaranteed ...
3
votes
2answers
96 views
Determining if a given Python module is part of the standard library
How can I determine whether a Python module is part of the standard library?
In other words: is there a Python equivalent of perl's corelist utility?
I would use this to set my expectations on ...
-2
votes
2answers
108 views
Why Python's standard library has a weak support for sending email [closed]
Python is advertised as a "batteries included" language.
So, I wonder why it's standard library doesn't include high level support for emails:
I found that you need to know lot about MIME to create ...
1
vote
2answers
36 views
ClassNotFoundException stores own copy of cause
I have Oracle's Java implementation (1.6.0_37) and I'm interested in ClassNotFoundException source code. If you look in it you will see that this class stores it's own copy of cause:
private ...
3
votes
2answers
130 views
Partially sorting array so last n elements are sorted?
Is there a way to perform a partial sort on an array of data so that the last n elements are sorted? By good I mean using the standard library, not implementing my own sort function (this is what I'm ...
5
votes
2answers
181 views
std::sort without copy construction
Assume that I have a vector of objects where:
copy construction and assignments are expensive
default construction and swapping of two objects is cheap.
This seems quite standard for objects with ...
0
votes
3answers
126 views
Std Pair Initialization
This is my first time working with pairs, totally confused.
How to initialize a pair as to insert it in the map?
Should I include some standard library for this?
#include <string>
#include ...
2
votes
2answers
179 views
C++ Primer (5th edition) beginner's quandary [duplicate]
Possible Duplicate:
GCC linker can’t find standard library?
I am trying to mess with this C++ book I got for the holidays, I am coming from a limited understanding of python so this stuff ...
1
vote
1answer
155 views
Python stand-alone HTTP server with script running support?
I'm writing an application that uses HTML pages as it's user interface - the user runs it on his computer and opens http://localhost:8080. After writing about a thousand lines of code implementing my ...
1
vote
1answer
73 views
Are two map iterators that point to the same item guaranteed to be equal?
I have a map object to which I want to insert a new element. After doing this, I want to make sure that this newly inserted element was inserted at the end. To do this, I have devised the following ...
2
votes
1answer
316 views
python standard lib equivalent to dateutil.parser.parse
I'm parsing datetimestamps using python dateutil, but would like to avoid the extra dependency. So Is there a way to do the equivalent with the standard python library:
...
1
vote
2answers
92 views
when std::map::insert finds the element, it still constructs an instance of the object. How can I stop this?
I have a std::map of objects whose instances are very expensive to construct. (In real life they require several accesses to a database.)
I want to access an element of the map, or create it if it ...
2
votes
3answers
72 views
C++ standard library constants for big and small numbers?
Is there a constant in the C++ std lib somewhere that means something like "largest representable number" and "smallest representable number"? In Matlab, we have things like EPS, realmax, and realmin. ...
18
votes
4answers
414 views
How can pointers be totally ordered?
Pointers in C++ may in general only be compared for equality. By contrast, less-than comparison is only allowed for two pointers that point to subobjects of the same complete object (e.g. array ...
3
votes
1answer
53 views
Appending a codepoint to a java.lang.Appendable
java.lang.Appendable supports append(char) but not appendCodepoint(int).
Is there any efficient way (no object creation) using the standard libraries to append a codepoint to an Appendable that works ...
0
votes
2answers
429 views
Throwing n dice m times, what is the probability of getting atleast one six
I have the following code trying to solve the problem below:
Thrown n dice m times, calculate the probability of getting at least one 6.
I know that the exact probability of getting at least 1 six ...
3
votes
3answers
274 views
How do the standard C library and system calls work together?
I recently got interested about inner workings of compilers, standard libraries and kernels. While I was searching for the source code of the standard C library, I came across with Glibc. But what it ...
0
votes
0answers
71 views
Is possible to include the standard library libstdc++ so I don't need to install it on my target? [duplicate]
Possible Duplicate:
How to statically link libstdc++
I want to make sure to use the same version of the standard library on my target platform.
So is there a way to compile it with my ...
0
votes
2answers
102 views
Finding occurrence of vector entries in another vector without nested for loops
I have a piece of code that I'm migrating from Fortran to C++, and I'd like to avoid some of the nested for loop structures I had to create in the original F77 code.
The problem is this: I have a ...
2
votes
2answers
84 views
Knowing how many elements a set have?
I'm programming in Pascal and I'm trying to find if is there any already created function/procedure in the standard library or similar that allows me to know how many elements a set has?
I know how ...
2
votes
2answers
164 views
fwprintf does not output wide characters
I want to output wide characters to a file, and fwprintf doesn't do it, even though it's described as doing just that. Sample code:
const char *testFileName = "/Users/jdmuys/wideTestFile.txt";
FILE ...
1
vote
1answer
126 views
Using libc++ instead of libstdc++ in an Adobe Flex native extension
We have a rather large c++ library that we packaged inside an Adobe Flex extension for use by our Flex users. We package that ANE for several platforms, including Mac OS and iOS. On the Mac, all is ...


