Tagged Questions
The ends tag has no wiki summary.
9
votes
2answers
621 views
What use is there for 'ends' these days?
I came across a subtle bug a couple of days ago where the code looked something like this:
ostringstream ss;
int anInt( 7 );
ss << anInt << "HABITS";
ss << ends;
string theWholeLot ...
4
votes
7answers
621 views
How many ways a java Program can end?
I know use System.exit(0) can end a java program, for instance, if I have a JFrame window, it will close and end the program, but I wonder how many other ways, can it be closed and the program be ...
3
votes
2answers
65 views
Which end of a pipe is for input and which for output?
I have been fighting with pipes and forks many days now. Recently I started suspecting that I use the ends of the pipes wrongly.
From the man pages:
pipe() creates a pipe.. ..pipefd[0] refers ...
0
votes
2answers
228 views
How do I ensure all loops finish in the same time in Parallel.For?
In C# (.NET), I got 2 loops ->
A for ... do:
{
B for do:
{ something}
something that evaluates all "for"s in B loop
}
I used Parallel.For for the inner loop but the results of those ...