@bamboon well, dealing with bitmaps is a specific task. C++ aims to keep it self as broads as possible, it tries to not get bogged down with defining things that are platform or problem specific. This is partly why C++ doesn't directly support things like 3D graphics, you have you use a library such as openGL
@jalf well, I thought he meant bitmap, as did Alf by the looks of it, and he seems to have agread with alfs suggestions... but no he seems to agree with you saying bimap, so I'm not sure what he is after :S
5.3.4 [expr.new] of the C++11 Feb draft gives the example:
new(2,f) T[5] results in a call of operator new[](sizeof(T)*5+y,2,f).
Here, x and y are non-negative unspecified values representing array allocation overhead; the result of the new-expression will be offset by this amount from ...
If a person shares my name, in Dutch there is the word "naamgenoot", meaning roughly 'member of the same name'.
Similarly,
'classmate' is 'klasgenoot' in Dutch
'roommate' is 'kamergenoot' in Dutch
I'm pretty sure I cannot call someone with the same name as mine a 'namemate' :)
Do you know ...
@thecoshman Allthough google fight suggests it might be a little more betterrer than 'name-twin' a casual inspection for the hits with '+"samenamer"' suggests none of them actually contain that word.
@TonyTheLion "We're a namesake" makes it sound a little 'important' pretentious for my taste. Anyways, do get all your good contributions up for voting at the question: english.stackexchange.com/questions/54502/…
nondigit: one of
a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z _
digit: one of
0 1 2 3 4 5 6 7 8 9
my point is, that it is very often not necessary to keep all indexes in synch while building/modifying the collections. This is where the additional cost is incurred. I have taken a preference to explicitely updating (reverse-)dictionaries whenever the need arises.
This also handily sidesteps a whole lot of template complexity (tag structs...) that isn't as obvious to the average programmer. I do like those, but it clutters the code nonetheless and I don't like it
That said, there are certainly situations where constantly-updated indexes are the best thing too have, and I'd use Boost Multi-Index there without any hesitation
In computer programming with object-oriented programming languages, duck typing is a style of dynamic typing in which an object's current set of methods and properties determines the valid semantics, rather than its inheritance from a particular class or implementation of a specific interface. The name of the concept refers to the duck test, attributed to James Whitcomb Riley (see history below), which may be phrased as follows:
:When I see a bird that walks like a duck and swims like a duck and quacks like a duck, I call that bird a duck.
In duck typing, one is concerned with just those...
I read that using raw pointers in C++ is bad. Instead we should use auto_ptr. In the below code I am populating a vector in foo() that is created in the main(). Am I doing it right or is there a better way to do without using explicit pointers.
#include <iostream>
#include <vector>
#...
Bonus question: assume that null pointer bit pattern is all zeros. Now, what should I do when I want to access the memory at 0x00...00 (happens sometimes in very low-level code)? Is it the "I'm writing non-portable code anyway, so just access it and hope the compiler doesn't do anything funny with it" thing?
@Fanael: I think having the pointer be 0x00...0 and having that be a valid address which you might want to access to points to a broken platform (compiler)
@Grizzly almost everything on x86. 0 is a perfectly valid address (when there's no OS, that is), yet almost all compilers on this platform define null pointer to 0.
@Grizzly some memory-mapped registers may lie there, firmware may left some interesting data there, and so on. Of course it's probably not the best address to choose for such things, but then again, all systems have their quirks.
That said, I once met someone who lived with his family in Spain and hacked for a compiler vendor in Ireland. He flew to Ireland for a day 2 or 4 times a month, and worked from home the rest of the time.
Anyway, the kids are ravenous, so I'd better feed them before they start to eat me. :)
According to recent studies, arguing on the internet is now the second most popular leisure activity in the world, just below shopping and just above sex.
@TheBreadCat no, actually because your struct contains a pointer, you need provide a copy ctor for your struct and overload operator= and create a dtor too
In criminal law, a conspiracy is an agreement between two or more persons to break the law at some time in the future. Criminal law in some countries or for some conspiracies may require that at least one overt act must also have been undertaken in furtherance of that agreement, to constitute an offense. There is no limit on the number participating in the conspiracy and, in most countries, no requirement that any steps have been taken to put the plan into effect (compare attempts which require proximity to the full offence). For the purposes of concurrence, the actus reus is a continuing...
@IntermediateHacker Compile yourself with optimizations turned on, so that the strictness analyzer will have a chance to kick in and eliminate unnecessary laziness.
@Fanael Luckily most noobs don't even come across it, unlike in C++ where noobs find dangerous features early on (like new) and then get enamored with them.
@RMartinhoFernandes Mind you, too much strictness can be fatal to you. Your very life is merely the process of evaluating all the thunks that got created as a result of your birth.