User GMan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-03T13:12:13Zhttp://stackoverflow.com/feeds/user/87234http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1838368/calculating-the-amount-of-combinations/1838402#18384024Answer by GMan for Calculating the Amount of CombinationsGMan2009-12-03T08:13:50Z2009-12-03T08:22:41Z<p>Well, consider the following:</p>
<pre>
n! / r!(n - r)! = n(n-1)! / r!(n - r)!
</pre>
<p>If <code>r = 1</code>, then it's easy to see that you now have <code>n / r!</code>. This can continue to any <code>r</code>, leaving a product <code>n(n-1)(n-2)...(n-r+1)</code>, leaving out <code>(n-r)!</code> to cancel out.</p>
<p>You could probably implement it simply as something like this:</p>
<pre><code>#include <iostream>
// depends on compiler
typedef unsigned __int64 integer;
//typedef unsigned long long integer;
const integer C(const integer n, const integer r)
{
integer numer = 1;
integer denom = 1;
// stop at r, the rest cancels out
for (integer i = 0; i < r; ++i)
{
numer *= (n - i); // n(n-1)...
denom *= (r - i); // r!
}
// and divide
return numer / denom;
}
int main(void)
{
// 2,598,960
std::cout << C(52, 5) << std::endl;
}
</code></pre>
<p>You could try to keep it even smaller by considering that if you had for example <code>8 / 4</code> you really have <code>2 / 1</code>. (This obviously makes more sense to apply when the numbers are huge).</p>
<p>You might try calculating a term of <code>r!</code> in the for-loop and seeing if the prime-factorization cancels out with the factorization of the top, and do so.</p>
http://stackoverflow.com/questions/1828021/storing-variable-sized-strings-in-structures/1828056#18280565Answer by GMan for Storing variable sized strings in structuresGMan2009-12-01T18:42:04Z2009-12-01T18:55:39Z<p>Well, you said "in a C style structure", but perhaps you can just use <a href="http://www.cplusplus.com/reference/string/" rel="nofollow"><code>std::string</code></a>?</p>
<pre><code>#include <fstream>
#include <iostream>
#include <string>
#include <vector>
int main(void)
{
std::fstream file("main.cpp");
std::vector<std::string> lines;
std::string line;
while (getline(file, line))
{
if (line == "end")
{
break;
}
std::cout << line << std::endl;
lines.push_back(line);
}
// lines now has all the lines up-to
// and not including "end"
/* this is for reading the file
end
some stuff that'll never get printed
or addded blah blah
*/
};
</code></pre>
http://stackoverflow.com/questions/1824910/is-there-an-occassion-whem-using-catch-all-clause-catch-justified/1824952#18249523Answer by GMan for is there an occassion whem using catch all clause : catch (...) justified ?GMan2009-12-01T09:14:43Z2009-12-01T10:32:51Z<p><code>catch(...)</code> has been useful for me in two circumstances, both of which are unjustified (I can't even remember the second)</p>
<p>The first is my overall application safety. While throwing exceptions that don't derive from <code>std::exception</code> is a No-No, I have one just in case in my <code>main()</code> function:</p>
<pre><code>int execute(void); // real program lies here
int main(void)
{
try
{
return execute();
}
catch(const std::exception& e)
{
// or similar
std::cerr << "Unhandled exception: " << e.what() << std::endl;
return EXIT_FAILURE;
}
catch(...)
{
std::cerr << "Unknown exception!" << std::endl;
return EXIT_FAILURE;
}
}
</code></pre>
<p>Now, it's only there "just in case", and it's not <em>really</em> justified. There should be no reason to ever enter that catch clause, as that would mean somebody has done a Bad Thing. Observe how useless the statement really is; "Something bad happened, no clue what!" It's only a step above just crashing in the first place.</p>
<p>The second use might be in destructors or some other function that needs to do manual management before letting the exception propagate. That's not really a justification either, as things should clean themselves up safely with RAII. But I may have used it once or twice for some reason I can't recall, and I can't see a reason to ever do so again.</p>
http://stackoverflow.com/questions/1824012/c-manipulate-2d-array/1824022#18240223Answer by GMan for C++, manipulate 2d arrayGMan2009-12-01T04:36:01Z2009-12-01T05:35:58Z<p>You can use <a href="http://www.cplusplus.com/reference/algorithm/swap/" rel="nofollow"><code>std::swap</code></a> and just swap the values in-place:</p>
<pre><code>void flipMatrix(int size, int matrix[ROWS][COLS])
{
for (int row = 0; row < ROWS; ++row)
{
for (col=0; col < COLS / 2; ++col) // half the column, lest you undo it
{
std::swap(matrix[ROWS - row - 1][col], matrix[row][col]);
}
}
}
</code></pre>
<p>Swap is defined in <a href="http://www.cplusplus.com/reference/algorithm/" rel="nofollow"><code><algorithm></code></a>. If you really can't use STL, swap is simple enough to implement:</p>
<pre><code>template <typename T>
void swap(T& pA, T& pB)
{
T temp = pA;
pA = pB;
pB = temp;
}
</code></pre>
http://stackoverflow.com/questions/1823721/how-to-catch-the-null-pointer-exception/1823728#18237282Answer by GMan for How to catch the null pointer exception ?GMan2009-12-01T03:02:30Z2009-12-01T03:10:22Z<p>You cannot. De-referencing a null-pointer is a system thing.</p>
<p>On Linux, the OS raises signals in your application. Take a look at <a href="http://www.cplusplus.com/reference/clibrary/csignal/" rel="nofollow">csignal</a> to see how to handle signals. To "catch" one, you'd hook a function in that will be called in the case of <code>SIGSEGV</code>. Here you could try to print some information before you gracefully terminate the program.</p>
<p>Windows uses <a href="http://msdn.microsoft.com/en-us/library/ms680657%28VS.85%29.aspx" rel="nofollow">structured-exception-handling</a>. You could use the instristics <code>__try/__except</code>, as outlined in the previous link. The way I did it in a certain debug utility I wrote was with the function <a href="http://msdn.microsoft.com/en-us/library/5z4bw5h5%28VS.80%29.aspx" rel="nofollow"><code>_set_se_translator</code></a> (because it closely matches hooks). In Visual Studio, make sure you have SEH enabled. With that function, you can hook in a function to call when the system raises an exception in your application; in your case it would call it with <code>EXCEPTION_ACCESS_VIOLATION</code>. You can then throw an exception and have it propagate back out as if an exception was thrown in the first place.</p>
http://stackoverflow.com/questions/1823474/initialize-a-c-string-with-multiple-quoted-strings/1823481#182348110Answer by GMan for initialize a C string with multiple quoted stringsGMan2009-12-01T01:23:50Z2009-12-01T01:23:50Z<p>The <a href="http://en.wikipedia.org/wiki/C%5Fsyntax#String%5Fliteral%5Fconcatenation" rel="nofollow">compiler</a> will automatically concatenate adjacent strings.</p>
<p>This can be quite useful to increase readability, as in your example, or with some preprocessor functions:</p>
<pre><code>#define LOG(x) printf("%s", "Logging: " x)
LOG("HeyHey");
</code></pre>
<p>Pretty contrived example, but gets the point across.</p>
http://stackoverflow.com/questions/1821799/what-useful-functionality-do-you-get-out-of-overriding-the-new-operator/1821813#18218133Answer by GMan for What useful functionality do you get out of overriding the 'new' operator?GMan2009-11-30T19:18:01Z2009-11-30T19:18:01Z<p>Well, custom memory management and debugging. That's about it, and all you can get out of it too.</p>
http://stackoverflow.com/questions/1821561/c-implications-of-making-a-method-virtual/1821623#18216231Answer by GMan for C++ : implications of making a method virtualGMan2009-11-30T18:44:03Z2009-11-30T18:44:03Z<p>There are other ways of accomplishing your goal. Does it make sense for <code>B</code> to be an <code>A</code>? For example, it makes sense for a Cat to be an Animal, but not for a Cat to be a Dog. Perhaps both A and B should derive from a base class, if they are related.</p>
<p>Is there just common functionality you can factor out? It sounds to me like you'll never be using these classes polymorphically, and just want the functionality. I would suggest you take that common functionality out and then make your two separate classes.</p>
<p>As for cost, if you're using A ad B directly, the compile will by-pass any virtual dispatching and just go straight to the functions calls, as if they were never virtual. If you pass a <code>B</code> into a place expecting `A1 (as a reference or pointer), then it will have to dispatch.</p>
http://stackoverflow.com/questions/1816319/reading-directly-from-an-stdistream-into-an-stdstring/1816382#18163822Answer by GMan for Reading directly from an std::istream into an std::stringGMan2009-11-29T18:47:39Z2009-11-29T18:47:39Z<p><code>std::string</code> has a <code>resize</code> function you could use, or a constructor that'll do the same:</p>
<pre><code>boost::uint16_t len;
is.read((char*)&len, 2);
std::string str(len, '\0');
is.read(&str[0], len);
</code></pre>
<p>This is untested, and I don't know if strings are mandated to have contiguous storage.</p>
http://stackoverflow.com/questions/1814756/parsing-argc-and-argv-in-c/1814800#18148009Answer by GMan for parsing argc and argv in c++GMan2009-11-29T06:07:21Z2009-11-29T06:07:21Z<p>I'm not sure I fully understand the question.</p>
<p>The cleanest method I know to get all the arguments in an easy to use array is:</p>
<pre><code>std::vector<std::string> v(argv, argv + argc);
</code></pre>
<p>But if you're looking for a way to really parse the data, check out <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/program%5Foptions.html" rel="nofollow">Boost.ProgramOptions</a>.</p>
http://stackoverflow.com/questions/1814772/c-header-file-convention/1814782#18147820Answer by GMan for C++ header file conventionGMan2009-11-29T05:51:02Z2009-11-29T05:51:02Z<p>I'm not quite sure I understand. The header files defines what the class is and can do, and you include that into any source files that need to use the class.</p>
<p>The source file implements how the class does its action.</p>
<p>However, you <em>can</em> include a <code>.cpp</code> into another (you can include anything into anything), but you don't need to.</p>
http://stackoverflow.com/questions/1805666/how-to-store-a-vector-of-lpd3dxsprite-objects/1806759#18067593Answer by GMan for How to store a vector of LPD3DXSPRITE objects?GMan2009-11-27T04:38:37Z2009-11-27T21:44:21Z<p>After looking through your code, I found the problem. Something to look at when you get any breaks in your application is the "Autos" tab or the Locals tab. Here you'll notice something about the <code>this</code> pointer: it's null!</p>
<p>That means the instance that <code>AddSprite</code> is being called on doesn't exist. This is your <code>SpriteManager</code>, which I see is a singleton. In your main, you don't create an instance of it.</p>
<p>I had to do a couple things to get it working. I included <code>"LudoRenderer/SpriteManager.h"</code> in <code>Main.cpp</code>, and added the <code>CreateInstance</code> call:</p>
<pre><code>SpriteManager::CreateInstance();
</code></pre>
<p>The only problem with this was that you had declared your constructor/destructor private, like other singletons, but never defined them, so I did that as well:</p>
<pre><code>SpriteManager::SpriteManager(){}
SpriteManager::~SpriteManager(){}
</code></pre>
<p>After those changes, it "worked". That's in quotes because your problem is solved, but there is another error later in the code <code>m_GameManager->SetWagon(m_Wagon);</code>.</p>
<p>Here, <code>m_GameManager</code> is not initialized. I uncommented <code>m_GameManager = GameManager::GetInstance();</code> on line 43 in <code>LudoEngine.cpp</code>, which put us in the same problem as before, no <code>CreateInstance</code> is ever called. I added the necessary header in main, called the create method. This fixed the problem, and your engine ran (cool demo, too!)</p>
<p>There was a crash on exit, in <code>ErrorLogger::LogError</code>, because <code>ErrorLogger</code> was null. It was being called in <code>LudoMemory</code>'s destructor, but I'll leave this one for you. :)</p>
<p>Now, two tips I tihnk that would help. The first is about the issue we're solving. Normally, singletons will create themselves if they aren't already. I'd change your singleton <code>GetInstance</code> to something like this:</p>
<pre><code>static T *GetInstance ( )
{
if (!m_Singleton) // or == NULL or whatever you prefer
{
CreateInstance();
}
return m_Singleton; // not sure what the cast was for
}
</code></pre>
<p>This will force creation of the singleton if it hasn't been already. Now, if you'd like users to call <code>CreateInstance</code> before trying to <code>GetInstance</code>, you could add some sort of warning:</p>
<pre><code>static T *GetInstance ( )
{
if (!m_Singleton) // or == NULL or whatever you prefer
{
CreateInstance();
std::cerr << "Warning, late creation of singleton!" << std::endl;
// or perhaps:
ErrorLogger::GetInstance()->
LogError(L"Warning, late creation of singleton!");
}
return m_Singleton;
}
</code></pre>
<p>Since that leaves out the important information "which singleton?", you could always try to add typeinfo to it:</p>
<pre><code>#include <typeinfo>
// ...
std::cerr << "Warning, late creation of singleton: "
<< typeid(T).name() << std::endl;
</code></pre>
<p>To try to get some type names in there.</p>
<p>And lastly, it's okay to <code>delete 0</code>, your checked delete macro is not needed.</p>
<p>To clarify, you have <code>LUDO_SAFE_DELETE</code>, which checks if it's not null before it calls delete. In C++, deleting null has no effect, so your check isn't needed. All instances of your safe delete could be replaced with just your LUDO_DELETE.</p>
http://stackoverflow.com/questions/1810622/c-returning-nested-class-with-template-on-base-class-problem/1810630#18106303Answer by GMan for C++ returning nested class with template on base class problemGMan2009-11-27T21:05:17Z2009-11-27T21:05:17Z<p>You need <code>typename</code>:</p>
<pre><code>typename A<T>::B
</code></pre>
<p>To indicate to the compiler that <code>A<T>::B</code> is a type. Here's a <a href="http://pages.cs.wisc.edu/~driscoll/typename.html" rel="nofollow">good explanation</a> why. </p>
<p>What <code>B</code> is depends on what <code>A<T></code> is, this is called dependency. Any time you are getting a type out of a class or struct, and it's dependent on a template, you'll need to use <code>typename</code>.</p>
http://stackoverflow.com/questions/1801834/stl-containers-read-only-operations/1801848#18018481Answer by GMan for STL container's read-only operationsGMan2009-11-26T06:19:25Z2009-11-26T06:19:25Z<p>The Standard says nothing on the safety of containers, by the way. But a method marked with <code>const</code> is guaranteed to not modify the container.*</p>
<p>If thread's will be reading and writing to the data at the same time, you'll need to synchronize them.</p>
<p>*<em>Logically modify, that is. Though I don't know any containers off-hand, any mutable members can change in const methods.</em></p>
http://stackoverflow.com/questions/1801215/c-dynamically-initializing-arrays/1801226#18012261Answer by GMan for C - Dynamically initializing arrays.GMan2009-11-26T02:21:22Z2009-11-26T02:21:22Z<p>Yes. Memory is not initialized, you just get a pointer to your chunk of memory.</p>
<p>You'll need to <a href="http://www.cplusplus.com/reference/clibrary/cstring/memset/" rel="nofollow"><code>memset</code></a> to initialize it:</p>
<pre><code>memset(pages, 0, npages * sizeof(int));
</code></pre>
<p>Also, unless I'm mistaken <code>kmalloc</code> takes a <a href="http://people.nl.linux.org/ftp/pub/anoncvs/kernelnewbies/documents/kdoc/kernel-api/r2415.html" rel="nofollow">second parameter</a>, the type of memory to allocate.</p>
http://stackoverflow.com/questions/1798112/removing-leading-and-trailing-spaces-from-a-string/1798170#179817012Answer by GMan for Removing leading and trailing spaces from a stringGMan2009-11-25T16:29:10Z2009-11-26T01:50:16Z<p>It's called trimming. You want to use <code>find_first_not_of</code> to get the index of the first non-whitespace character, then <code>find_last_not_of</code> to get the index from the end that isn't whitespace. With these, use <code>substr</code> to get the sub-string with no surrounding whitespace.</p>
<p>In response to your edit, I don't know the term but I'd guess something along the lines of "reduce", so that's what I called it. :) (Note, I've changed the white-space to be a parameter, for flexibility)</p>
<pre><code>#include <iostream>
#include <string>
const std::string trim(const std::string& pString,
const std::string& pWhitespace = " \t")
{
const size_t beginStr = pString.find_first_not_of(pWhitespace);
if (beginStr == std::string::npos)
{
// no content
return "";
}
const size_t endStr = pString.find_last_not_of(pWhitespace);
const size_t range = endStr - beginStr + 1;
return pString.substr(beginStr, range);
}
const std::string reduce(const std::string& pString,
const std::string& pFill = " ",
const std::string& pWhitespace = " \t")
{
// trim first
std::string result(trim(pString, pWhitespace));
// replace sub ranges
size_t beginSpace = result.find_first_of(pWhitespace);
while (beginSpace != std::string::npos)
{
const size_t endSpace =
result.find_first_not_of(pWhitespace, beginSpace);
const size_t range = endSpace - beginSpace;
result.replace(beginSpace, range, pFill);
const size_t newStart = beginSpace + pFill.length();
beginSpace = result.find_first_of(pWhitespace, newStart);
}
return result;
}
int main(void)
{
const std::string bleh = " too much\t \tspace\t\t\t ";
std::cout << "[" << trim(bleh) << "]" << std::endl;
std::cout << "[" << reduce(bleh) << "]" << std::endl;
std::cout << "[" << reduce(bleh, "-") << "]" << std::endl;
}
</code></pre>
<p>Though if you can <a href="http://www.boost.org/doc/libs/1%5F41%5F0/doc/html/string%5Falgo.html" rel="nofollow">boost</a>, I'd recommend it.</p>
http://stackoverflow.com/questions/1799733/foreach-algorithm-in-c/1799766#17997667Answer by GMan for foreach algorithm in C++GMan2009-11-25T20:34:13Z2009-11-25T20:34:13Z<p><code>for_each</code> will return a copy of the functor you passed it. This means you could do this:</p>
<pre><code>template <typename T>
class has_value
{
has_value(const T& pValue) : mValue(pValue), mFlag(false) {}
void operator()(const T& pX)
{
if (pX == mValue)
mFlag = true;
}
operator bool(void) const { return mFlag; }
private:
T mValue;
bool mFlag;
};
bool has_seven = std::for_each(myvector.begin(), myvector.end(), has_value<int>(7));
</code></pre>
<p>For example. But for counting and the like, check out <a href="http://www.cplusplus.com/reference/algorithm/" rel="nofollow"><code>algorithm</code></a> and see if your function already exists. (Like <a href="http://www.cplusplus.com/reference/algorithm/count/" rel="nofollow"><code>count</code></a>)</p>
http://stackoverflow.com/questions/1795816/can-a-c-class-constructor-know-its-instance-name/1795829#179582911Answer by GMan for Can a C++ Class Constructor Know Its Instance Name?GMan2009-11-25T09:53:08Z2009-11-25T09:53:08Z<p>No. Variable names are for the programmer, the compiler sees addresses.</p>
<p>Other languages that provide meta-data/reflection about their program might provide this functionality, C++ isn't one of those languages.</p>
http://stackoverflow.com/questions/1788879/pbl-xcode-c-typedef-struct-toto-toto/1789044#17890440Answer by GMan for Pbl xcode C++ typedef struct toto totoGMan2009-11-24T09:53:01Z2009-11-24T09:53:01Z<p>This isn't C. In C, to use a <code>struct</code> you had to use the keyword <code>struct</code>:</p>
<pre><code>struct some_struct{ int i; };
struct some_struct myStruct;
</code></pre>
<p>This was alleviated like this, commonly:</p>
<pre><code>typedef struct { int i; } some_struct;
some_struct myStruct;
</code></pre>
<p>In C++ this is not required. <code>direction</code> already has a type, then you're trying to make a new type of the same name, and that's bad. Take out your entire <code>typedef</code>, it isn't needed.</p>
http://stackoverflow.com/questions/1788783/is-system-programming-dead/1788837#17888375Answer by GMan for Is system programming dead?GMan2009-11-24T09:08:54Z2009-11-24T09:08:54Z<p>The development in higher-level languages of systems has only just begun on modern desktop PC's. Don't forget about microchips, embedded processors, hand helds, etc... Some of those haven't even moved on to C++ yet.</p>
<p>Any language that forces garbage collection on it's user is, in my opinion, doomed to never be a systems language. And that's <em>okay</em>, they weren't made for that. I think a language like D would be an optimal system programming languages, being an elegant mix of of the low-level stuff in C, and only the good high-level stuff in C++. It has optional garbage collection, which can do all sorts of wondrous things. Sadly, it's dead, because of C/C++. See the point?</p>
http://stackoverflow.com/questions/1787966/what-is-the-capacity-of-an-empty-vector/1787981#17879817Answer by GMan for what is the capacity of an empty vector?GMan2009-11-24T05:26:35Z2009-11-24T07:11:11Z<p>The capacity can be whatever the implementors feel is correct or necessary.</p>
<p>It should also be noted it's never "safe" to assume you know the current <code>capacity()</code> without a call to that function. If you reserve 10 elements, the implementor is of free to allocate one hundred if it so wants to. Or 11, 42 (preferred) or just 10.</p>
http://stackoverflow.com/questions/1788259/crash-when-utilising-a-stdmap/1788271#17882710Answer by GMan for Crash when utilising a std:mapGMan2009-11-24T06:40:13Z2009-11-24T06:40:13Z<p>Maps are used to associate a key with a value. If you're looking for an array, you should use a <a href="http://www.cplusplus.com/reference/stl/vector/" rel="nofollow"><code>vector</code></a>. It will do a better job of simulating an "infinite array" than a map, because a map isn't an array.</p>
<p>Note you can allocate <em>a lot</em> of elements with a vector, usually. If you're really trying to simulate a large array, I'd recommend wrapping up a vector of vectors. With some math, you could create an <code>operator[]</code> for it that indexes into the correct array, to the correct element.</p>
<p>As for your code, there really isn't enough information to determine why it should be crashing, you'd have to try to create a minimal program for us to compile or look at.</p>
http://stackoverflow.com/questions/1785416/c-naming-readinput-vs-readinput/1785527#17855275Answer by GMan for C++ naming: read_input() vs. readInput()GMan2009-11-23T19:53:53Z2009-11-23T19:53:53Z<p>I prefer to take the boost route, and match the standard library. That means <code>lower_case_names</code>. I like that my code reads consistent with respect to the STL.</p>
http://stackoverflow.com/questions/1780186/include-file-error-in-c/1780199#17801993Answer by GMan for include file error in C++GMan2009-11-22T22:17:11Z2009-11-22T22:17:11Z<p><code>vector</code> and the like are contained in the namespace <code>std::</code>. Do <strong>not</strong> use <code>using namespace std;</code> in a header file. Otherwise everyone that includes it gets all of <code>std::</code> whether intended or not.</p>
<p>On a side note, if this is a utility header intended to be included in other files, you might wrap up those types and <code>#define</code>'s in a namespace. Note <code>#define</code>'s don't respect namespaces, so you'd prefix them instead:</p>
<pre><code>namespace utility
{
// ...
typedef std::queue<int> qi;
// most would recommend this be in CAPS
#define utility_tr(c,i) for(typeof((c).begin()) i = (c).begin() ; i!=(c).end() ; ++i )
// ...
}
</code></pre>
http://stackoverflow.com/questions/1774091/partially-defaulting-template-arguments-using-typedefs/1774106#17741064Answer by GMan for Partially defaulting template arguments using typedefs?GMan2009-11-21T00:48:49Z2009-11-21T01:07:48Z<p>C++0x will alleviate this issue, but as it stands you cannot.</p>
<p>The common work-around is this:</p>
<pre><code>template <typename T,bool Strong=true>
class Pointer {...};
template <typename T>
struct WeakPointer
{
typedef Pointer<T,false> value_type;
};
</code></pre>
<p>So instead of:</p>
<pre><code>typedef WeakPointer<int> WeakInt;
</code></pre>
<p>You get:</p>
<pre><code>typedef WeakPointer<int>::value_type WeakInt;
</code></pre>
http://stackoverflow.com/questions/1768075/is-it-a-good-idea-to-put-all-project-headers-into-one-file-headers-h/1768735#17687350Answer by GMan for Is it a good idea to put all project headers into one file HEADERS.h?GMan2009-11-20T06:39:52Z2009-11-20T06:39:52Z<p>I just want to add that, yes this is normally a bad idea, but it can be useful on occasion. Never for entire projects though.</p>
<p>For example, I recently wrote a utility to perform a stack dump on windows. There were 4 common headers I was going to include, so I made (in a <code>detail</code> folder, a convention <strike>I stole form boost</strike> use) a <code>windows.hpp</code>, which included those four. The implementations could then use that header to easily get the necessary functions.</p>
<p>While it might not carry the same weight as a mega-includes-480-headers header, it <em>was</em> a grouping of a handful of common headers, and it was quite helpful. the key thing here is it was a small collection of <strong>related</strong> headers, used in a portion of the code.</p>
http://stackoverflow.com/questions/1642028/what-is-the-name-of-this-operator159What is the name of this operator: "-->"?GMan2009-10-29T06:57:45Z2009-11-19T19:46:56Z
<p>After reading <a href="http://groups.google.com/group/comp.lang.c++.moderated/msg/33f173780d58dd20" rel="nofollow">this post</a> on comp.lang.c++.moderated, I was completely surprised that it compiled and worked in both VS 2008 and G++ 4.4. The code:</p>
<pre><code>#include <stdio.h>
int main()
{
int x = 10;
while( x --> 0 ) // x goes to 0
{
printf("%d ", x);
}
}
</code></pre>
<p>Where in the standard is this defined, and where did it come from?</p>
<p>I'd assume C, since it works in GCC as well, but I put C++ on there just in case C++ has more to mention on it. On a more subjective note, I've never heard of this before, had anybody else? Is it worth using?</p>
http://stackoverflow.com/questions/1765774/boost-cheat-sheet/1765825#17658254Answer by GMan for Boost cheat sheetGMan2009-11-19T19:16:27Z2009-11-19T19:16:27Z<p>Well, looking at the library list <a href="http://www.boost.org/doc/libs/1%5F40%5F0/" rel="nofollow">here</a> or <a href="http://www.boost.org/doc/libs/1%5F41%5F0/libs/libraries.htm" rel="nofollow">here</a> are how I familiarized myself with boost. Just click through each so you can get a general idea of what the libraries can do. Then if you ever need something you might recall that functionality was in boost.</p>
<p>I suppose you could also try searching the <a href="http://www.google.com/search?q=site%3Aboost.org" rel="nofollow">site with Google</a> for the keywords you're trying to use on a particular problem.</p>
<p>Throwing away code after you've written it is hard to do, but the right thing to do. Coincidentally, I asked a question yesterday, and after implementing the whole thing, someone found it in boost. I just source controlled it, then deleted it. Think of it as a learning exercise :)</p>
http://stackoverflow.com/questions/1760726/compose-output-streams4Compose output streamsGMan2009-11-19T03:35:12Z2009-11-19T14:03:31Z
<p>I'd like to compose two (or more) streams into one. My goal is that any output directed to <code>cout</code>, <code>cerr</code>, and <code>clog</code> also be outputted into a file, along with the stream. (For when things are logged to the console, for example. After closing, I'd like to still be able to go back ad view the output.)</p>
<p>I was thinking of doing something like this:</p>
<pre><code>class stream_compose : public streambuf, private boost::noncopyable
{
public:
// take two streams, save them in stream_holder,
// this set their buffers to `this`.
stream_compose;
// implement the streambuf interface, routing to both
// ...
private:
// saves the streambuf of an ios class,
// upon destruction restores it, provides
// accessor to saved stream
class stream_holder;
stream_holder mStreamA;
stream_holder mStreamB;
};
</code></pre>
<p>Which seems straight-forward enough. The call in main then would be something like:</p>
<pre><code>// anything that goes to cout goes to both cout and the file
stream_compose coutToFile(std::cout, theFile);
// and so on
</code></pre>
<p>I also looked at <code>boost::iostreams</code>, but didn't see anything related.</p>
<p>Are there any other better/simpler ways to accomplish this? My knowledge of streams is weak.</p>
http://stackoverflow.com/questions/1761379/is-returning-string-reference-the-best-case-in-below/1761389#17613897Answer by GMan for Is Returning String Reference The Best Case In BelowGMan2009-11-19T06:57:41Z2009-11-19T08:36:28Z<p>It can be if you do it correctly. What you have now is undefined:</p>
<pre><code>virtual const std::string& name2() const
{
return std::string("My Baby"); // constructs temporary string!
}
</code></pre>
<p>You're returning a reference to a temporary. For this to work, it must be an l-value. You could make it static:</p>
<pre><code>virtual const std::string& name2() const
{
static const std::string result = "My Baby";
return result;
}
</code></pre>
<p>Or a member of the class, etc. Now it returns a usable variable.</p>
<p>I don't have much experience in what's common, but I'd guess number one is common if these interfaces are being used between modules. (i.e., the interface as allocated from a shared library/dll). This is because the implementation of strings is likely differ between compilers, and sometimes even different versions of the same compiler. If the program was made with one implementation, while the derived's was made in another, transferring between the two could fail.</p>
<p>By using a <code>const char *</code> (which is the same in all compilers), you avoid that. However, <code>const char *</code> can look unsightly to some.</p>
<p>The second options seems to be what I would use, because forcing derived classes to make a static/l-value variable might not be what you should do. The copy is likely to be very quick anyway.</p>
http://stackoverflow.com/questions/1838368/calculating-the-amount-of-combinations/1838402#1838402Comment by GMan on Calculating the Amount of CombinationsGMan2009-12-03T08:36:53Z2009-12-03T08:36:53ZOkay, just be wary of large values, this isn't a full-on solution. Prime Factorization isn't an efficient thing. You <i>could</i> try keeping even numbers out, that's simple enough. After you increase each divisor, check if both are even. If so, divide by 2. Repeat until one is not longer even.http://stackoverflow.com/questions/1838368/calculating-the-amount-of-combinations/1838402#1838402Comment by GMan on Calculating the Amount of CombinationsGMan2009-12-03T08:28:50Z2009-12-03T08:28:50ZIndeed, hence the suggestion to try to minimize that against the numerator.http://stackoverflow.com/questions/1838274/omfg-google-fades-inComment by GMan on OMFG GOOGLE FADES INGMan2009-12-03T07:37:47Z2009-12-03T07:37:47ZOMFG THIS QUESTION GETS CLOSEDhttp://stackoverflow.com/questions/1834189/opencv-and-xcodeComment by GMan on OpenCV and XcodeGMan2009-12-02T22:27:49Z2009-12-02T22:27:49ZIf you're still there, I just started working with OpenCV a few days ago. After you've compiled you just need to link to the libraries.http://stackoverflow.com/questions/1835923/generating-random-numbers-in-cComment by GMan on Generating random numbers in CGMan2009-12-02T22:02:29Z2009-12-02T22:02:29ZIs all this stuff in main? You're so close :) Just post a compilable example, like Mark suggested. If we can take your code directly and compile it to get the same problems its much easier to fix.http://stackoverflow.com/questions/1835923/generating-random-numbers-in-cComment by GMan on Generating random numbers in CGMan2009-12-02T21:56:14Z2009-12-02T21:56:14ZI think you're just seeing it that way. Few people here are emotional. Please, post your real code so we can solve your real problem.http://stackoverflow.com/questions/1835923/generating-random-numbers-in-c/1835932#1835932Comment by GMan on Generating random numbers in CGMan2009-12-02T21:51:17Z2009-12-02T21:51:17ZYou're correct. But you made the claim "srand is called only once", which can't be determined from his code. Consider: <code>void foo() {/* his code */} int main() {while (true) foo() }</code>http://stackoverflow.com/questions/1835923/generating-random-numbers-in-c/1835932#1835932Comment by GMan on Generating random numbers in CGMan2009-12-02T21:42:28Z2009-12-02T21:42:28ZMartinho, you know this how? It's called once <i>inside the function it resides</i>, which may or may not be <code>main()</code>.http://stackoverflow.com/questions/1831290/static-variable-initialization/1831350#1831350Comment by GMan on Static variable initialization?GMan2009-12-02T08:18:25Z2009-12-02T08:18:25ZHe probably wants to know why this choice was made.http://stackoverflow.com/questions/1831290/static-variable-initializationComment by GMan on Static variable initialization?GMan2009-12-02T08:09:25Z2009-12-02T08:09:25ZNo, Ton, static variables are default-initialized.http://stackoverflow.com/questions/1830161/programmer-power-levelsComment by GMan on Programmer Power LevelsGMan2009-12-02T02:00:20Z2009-12-02T02:00:20Z<b>IT'S OVER NINE-THOUSAND!!!!!!!!!!!!!</b>http://stackoverflow.com/questions/1829930/multi-statement-macros-in-c/1829936#1829936Comment by GMan on Multi-statement Macros in C++GMan2009-12-02T00:39:36Z2009-12-02T00:39:36ZMight as well add an else to an existing if-statement, though.http://stackoverflow.com/questions/1829930/multi-statement-macros-in-c/1829936#1829936Comment by GMan on Multi-statement Macros in C++GMan2009-12-02T00:33:01Z2009-12-02T00:33:01ZThe solution is to add <code>else (void)0</code> to the end of the macro, which both fixes block-scopes and forces a semicolon.http://stackoverflow.com/questions/1828021/storing-variable-sized-strings-in-structures/1828056#1828056Comment by GMan on Storing variable sized strings in structuresGMan2009-12-01T18:54:24Z2009-12-01T18:54:24ZYay, Neil commented! :D Hello, Mr. Butterworth.http://stackoverflow.com/questions/1824910/is-there-an-occassion-whem-using-catch-all-clause-catch-justified/1825276#1825276Comment by GMan on is there an occassion whem using catch all clause : catch (...) justified ?GMan2009-12-01T11:39:43Z2009-12-01T11:39:43ZOh, I see haha. :) My mistake.