|
C++
Discuss C++
November 20th, 2008
msquared (Administrator)
3 Replies |
Posted by: zr
| Last post by Paavo Helde, Today
zr <zvirack@gmail.comkirjutas:
Probably not the best place, there seem to be many groups
comp.security*.
In Perl for example there is some... more »
1 Reply |
Posted by: MJK
| Last post by osmium, Today
"MJK" wrote:
Just a wild guess, but there might be a bug in your code. more »
Noah Roberts writes:
Modern Java VMs compile Java bytecode down into native machine code. If you
believe Java's proponents, Java VMs should do even... more »
James Kanze writes:
Well, now that the code is written, there's no need to keep this extra
baggage round. Bite the bullet, and rewrite QString into... more »
On 2008-11-20 14:40:19 -0500, acehreli@gmail.com said:
Not really. There's a third type argument to std::map which specifies
the map's predicate... more »
On Nov 20, 5:42 am, Rune Allnor <all...@tele.ntnu.nowrote:
/* apply const attribute where applicable */
float computeSomething(vector<floatvec,... more »
Prasad <prasadmpatil@gmail.comkirjutas:
Sorry Andrey, for misspelling your name (and having been copied!)
Paavo more »
"Juha Nieminen" <nospam@thanks.invalidwrote in message
news:aChVk.259$jw1.191@read4.inet.fi...
Sorry for being so retarded, but how would a deque... more »
Andrey Tarasevich wrote:
Also, on a relatively exotic system with the range of 'unsigned char'
exceeding the positive range of 'int', 'i' will get... more »
7 Replies |
Posted by: BigBaz
| Last post by =?UTF-8?B?RXJpayBXaWtzdHLDtm0=?=, Today
On 2008-11-20 11:04, BigBaz wrote:
T' = T
Your welcome.
--
Erik Wikström more »
Jeff Schwab wrote:
Yes. For example one produced by a big company that also does OSs and
office packages.
Not only will memcpy be inlined by the... more »
On Nov 20, 4:52 pm, Michal <rabbi...@tenbit.plwrote:
gnu.g++.help
--
Max more »
Yannick Tremblay wrote:
YMMD - it makes for very easy date calculation when you have to handle
lots and lots of date routines (where speed isn't as... more »
Chunekit Pong <worlman385@yahoo.comwrote in
news:ok7ai4hn1aifrcput99okpvvoricqu7qsa@4ax.com:
Why bother to make pbBinary and size ?
Why not: more »
On Nov 20, 8:56 am, "miso.liptak" <miso.lip...@gmail.comwrote:
That depends on how precise and how portable you have to be.
Not all days have... more »
Chunekit Pong schrieb:
Of course it doesn't work. pEncOut is set to NULL. It won't magically
change to something else.
You would have to set... more »
On 2008-11-20 03:50:41 -0500, James Kanze <james.kanze@gmail.comsaid:
This muddles the fundamental distinction between sequences and
containers.... more »
1 Reply |
Posted by: Dot.Hu
| Last post by Maxim Yegorushkin, Today
On Nov 20, 6:35 am, "Dot.Hu" <huhang...@gmail.comwrote:
A .lib file is basically an archive of .o/.obj files. The linker links
in only those .obj... more »
On Nov 20, 8:43 am, James Kanze <james.ka...@gmail.comwrote:
It is a shortcut for:
int* y = &x;
You are right that x is sufficient. more »
On Nov 20, 12:22 pm, Pallav singh <singh.pal...@gmail.comwrote:
It is matter of object properties, abstraction and encapsulation.
Like in case of... more »
On Nov 19, 10:25 pm, Paavo Helde <pa...@nospam.please.orgwrote: more »
On Nov 19, 10:29 am, "Jung, William" <aopiyy...@yahoo.comwrote:
If you do, there's no way you can pass it back to the user.
But this interface is... more »
Victor Bazarov wrote:
Victor,
Thanks for the response. The issue was resolved tow different ways. The
first by inserting the 'typename' keyword... more »
Chunekit Pong schrieb:
Just use the base64_decode function on this page and pass it the base64
encoded string, then store the result in a file using... more »
Welcome to comp.lang.c++! Read this first.
This post is intended to give the new reader an introduction to reading
and posting in this newsgroup. We... more »
1 Reply |
Posted by: vaib
| Last post by Jerry Coffin, Yesterday
In article <e35d57b1-6e9f-4ec7-9529-
b3212c68bb0d@c2g2000pra.googlegroups.com>, vaibhavpanghal@gmail.com
says...
The usual is to design a grammar... more »
On 19 Nov., 09:50, Allonii <allo...@hotmail.comwrote:
I can recommend Qt, because it is quite easy to use, and the (free
online) Documentation is... more »
On Nov 17, 3:35 pm, dot <"benhongh(at)gmail(dot)com"@nowherewrote:
yes i think i would not post here anymore . i got the right thread .
and i'll... more »
1 Reply |
Posted by: Angus
| Last post by Maxim Yegorushkin, Yesterday
On Nov 19, 11:54 am, Angus <anguscom...@gmail.comwrote:
It does go out of scope.
The idea behind reference counting is that there is a... more »
On Nov 19, 9:24 am, "Bill Davy" <B...@XchelSys.co.ukwrote:
Maybe. Trying to access it is undefined behavior, so there's no
way to tell.
-- more »
Hendrik Schober wrote:
Actually, I just need two different types for the template,
foo<std::stringand foo<int>. The only difference is the id type... more »
On Nov 19, 9:36 am, Joy Maitland <iiu...@yahoo.comwrote:
Becuase you are using an output stream, rather than an input. Change
ofstream to... more »
I wrote a class like that a few years ago and it turned out to be quite
useful
Example code:
string Part1, Part2, Key;
parse_str(Line) >Part1 >"%"... more »
Victor Bazarov schrieb:
Please have a closer look at the code example above: It shows that it
_is_ possible to execute initialization code exactly... more »
red floyd <no.spam.here@example.comkirjutas:
Yes, by encapsulating and abstracting one can build tools exactly
matching the needs. Another question... more »
given the following base64_encode function, I will read bytes from a
file and encode the binary data into a single line CString;
but something wrong... more »
I have some binary data encoded as Base64 encoding in an XML element
like this:
<data>TWFuIGlzIGRpc3Rpbmd1aXNoZWQsIG5vdCBvbmx</data>
how can I... more »
Andy Gibbs wrote:
Hello all,
Thanks for all your comments and recommendations!
Cheers
Andy more »
- I have a class that extends CSocketComm, it is a socket server
- after client send data to server (OnDataReceived function), how can
I send back... more »
On Nov 18, 8:48 pm, Joe Gottman <jgott...@carolina.rr.comwrote:
That's what I was looking for, thanks Joe and Salt_Peter.
Also, sorry, I'm looking... more »
|
|
|
What is Bytes?
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 196,840 network members.
Top Community Contributors
|