User Eclipse - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T00:59:37Zhttp://stackoverflow.com/feeds/user/8701http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806143/calculate-percent-at-runtime/1806166#180616613Answer by Eclipse for Calculate percent at runtimeEclipse2009-11-26T23:50:21Z2009-11-26T23:50:21Z<p>Why not do it randomly. For each transaction, pick a random number between 0 and 100. If that number is less than your "percent", then audit the transaction. If the number is greater than your "percent", then don't. I don't know if this satisfies your requirements, but over an extended period of time, you will have the right percentage audited.</p>
<p>If you need an exact "skip 2, audit one, skip 2 audit one" type of algorithm, you'll likely have luck adapting a <a href="http://en.wikipedia.org/wiki/Bresenham%27s%5Fline%5Falgorithm" rel="nofollow">line-drawing algorithm</a>. </p>
http://stackoverflow.com/questions/1743999/function-returning-variable-by-refrence/1744884#17448840Answer by Eclipse for Function returning variable by refrence???Eclipse2009-11-16T21:12:09Z2009-11-16T23:56:41Z<p>A word of warning, when returning a reference: pay attention to the lifetime of whatever you're returning. This example is bad:</p>
<pre><code>int &function()
{
int x;
// BAD CODE!
return x;
}
...
function() = 10;
</code></pre>
<p>x doesn't exist outside of <code>function</code>, and neither do any references to it. In order to return a reference from a function, the object being referred to has to last at least as long as the reference. In the above example, x would need to be declared static. Other possibilities would be making x a global variable, or making function a class member function and returning a reference to a class member variable, or allocating x on the heap and returning a reference to that (although that gets tricky with deallocation)</p>
http://stackoverflow.com/questions/1709941/in-what-order-are-the-aggregated-classes-deleted/1709972#17099726Answer by Eclipse for In what order are the aggregated classes deleted?Eclipse2009-11-10T18:04:32Z2009-11-10T18:10:21Z<p>They are destroyed (not deleted) in the reverse order that they were created. It is this that also requires that regardless of how the constructor is written that all the members must be constructed in a consistent order. If each constructor could define the order that the members were constructed, each class instance would have to carry around information on how it was constructed, in order to be able to destruct in reverse order. By defining the order to always be the order that the members were declared in the class definition, the order of construction does not change from constructor to constructor.</p>
<p>In your example, first, memory is allocated for the full A class. Next <code>_b</code> is constructed, then <code>_c</code> then <code>A</code>. If A were to have a base class, that would be fully constructed before any of the above. On deletion, the reverse occurs. First <code>A</code>'s destructor is called, then <code>_c</code> is destructed, then <code>_b</code> (then any base classes are destructed). Finally the memory for 'A' is freed.</p>
http://stackoverflow.com/questions/1675820/queue-stack-c/1675849#16758491Answer by Eclipse for Queue + Stack C++Eclipse2009-11-04T18:50:52Z2009-11-04T18:56:43Z<p>Well, it seems kind of silly to rule out the stl, since <a href="http://www.sgi.com/tech/stl/Deque.html" rel="nofollow"><code>std::deque</code></a> is exactly what you want. Amortized constant time random access. Amortized constant insert/removal time from both the front and the back. </p>
<p>This can be achieved with an array with extra space at the beginning and end. When you run out of space at either end, allocate a new array with twice the space and copy everything over, again with space at both the end and the beginning. You need to keep track of the beginning index and the end index in your class.</p>
http://stackoverflow.com/questions/1650740/exception-handling-code-please-explain-it/1650891#16508916Answer by Eclipse for Exception Handling Code Please explain it...Eclipse2009-10-30T16:27:57Z2009-10-30T16:27:57Z<p>As mentioned elsewhere, C++ pointers do NOT delete the memory they point to when going out of scope. You have a few options:</p>
<ol>
<li><p>The hard way - try and do the memory management yourself. This way lies memory leaks and buffer overflows. Try not to do this.</p>
<pre><code>void abc(int p)
{
A * Aptr = new A[2];
if(p<0)
{
delete [] Aptr;
throw p;
}
delete [] Aptr;
}
</code></pre></li>
<li><p>Put the array on the stack and let the normal stack unwinding handle it:</p>
<pre><code>void abc(int p)
{
A Aptr[2];
if (p<0)
throw p;
}
</code></pre></li>
<li><p>Instead of using a raw pointer to point to the newly allocated array, hold onto it using a smart pointer class like <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/smart%5Fptr/scoped%5Farray.htm" rel="nofollow"><code>scoped_array</code></a> or <a href="http://www.boost.org/doc/libs/1%5F40%5F0/libs/smart%5Fptr/shared%5Farray.htm" rel="nofollow"><code>shared_array</code></a>, or some other RAII class:</p>
<pre><code>void abc(int p)
{
boost::scoped_array<A> Aptr (new A[2]);
if(p<0)
throw p;
}
}
</code></pre></li>
</ol>
<p>2 and 3 are really the only safe options in C++ code that uses exceptions - if you use raw pointers and manual memory management, you WILL end up with memory leaks sooner or later. No matter how careful you are, exception safe code pretty much requires RAII.</p>
http://stackoverflow.com/questions/1633834/maximize-cpu-usage/1633839#163383921Answer by Eclipse for Maximize CPU UsageEclipse2009-10-27T21:42:04Z2009-10-27T21:55:59Z<p>I'm assuming you running on a dual-core computer. Try starting another thread.</p>
<p>If you only have one thread of execution in your application, it can only be run on one CPU core at a time. The solution to this is to divide the work in half, and get one CPU core to run one half and the other core to run the other half. Of course you might want to generalize this to work with 4 cores or more....</p>
<p>Setting the priority for your application is only going to move it up the queue for which process gets first chance to use the CPU. If there is a real-time process waiting for the CPU, it will always get it before a high priority, and so on down the priority list. Even if your app is low priority, it can still max out a CPU core if it has enough work to do, and no higher-priority process is wanting to use that core.</p>
<p>For an introduction to multithreading, check out these questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/279009/c-multithreading-tutorial">C++ multithreading tutorial</a></li>
<li><a href="http://stackoverflow.com/questions/1511101/what-is-easiest-way-to-create-multithreaded-applications-with-c-c">What is easiest way to create multithreaded applications with C/C++?</a></li>
<li><a href="http://stackoverflow.com/questions/1381757/good-multithreading-guides">Good multithreading guides?</a></li>
</ul>
http://stackoverflow.com/questions/1632145/use-of-min-and-max-functions-in-c/1632267#16322670Answer by Eclipse for Use of min and max functions in C++Eclipse2009-10-27T17:03:42Z2009-10-27T17:03:42Z<p><code>fmin</code> and <code>fmax</code>, of <code>fminl</code> and <code>fmaxl</code> could be preferred when comparing signed and unsigned integers - you can take advantage of the fact that the entire range of signed and unsigned numbers and you don't have to worry about integer ranges and promotions.</p>
<pre><code>unsigned int x = 4000000000;
int y = -1;
int z = min(x, y);
z = (int)fmin(x, y);
</code></pre>
http://stackoverflow.com/questions/112085/is-this-c-structure-initialization-trick-safe/115878#1158780Answer by Eclipse for Is this C++ structure initialization trick safe?Eclipse2008-09-22T16:23:32Z2009-10-26T23:05:11Z<p>It's a bit of code, but it's reusable; include it once and it should work for any POD. You can pass an instance of this class to any function expecting a MY_STRUCT, or use the GetPointer function to pass it into a function that will modify the structure.</p>
<pre><code>template <typename STR>
class CStructWrapper
{
private:
STR MyStruct;
public:
CStructWrapper() { STR temp = {}; MyStruct = temp;}
CStructWrapper(const STR &myStruct) : MyStruct(myStruct) {}
operator STR &() { return MyStruct; }
operator const STR &() const { return MyStruct; }
STR *GetPointer() { return &MyStruct; }
};
CStructWrapper<MY_STRUCT> myStruct;
CStructWrapper<ANOTHER_STRUCT> anotherStruct;
</code></pre>
<p>This way, you don't have to worry about whether NULLs are all 0, or floating point representations. As long as STR is a simple aggregate type, things will work. When STR is not a simple aggregate type, you'll get a compile-time error, so you won't have to worry about accidentally misusing this. Also, if the type contains something more complex, as long as it has a default constructor, you're ok:</p>
<pre><code>struct MY_STRUCT2
{
int n1;
std::string s1;
};
CStructWrapper<MY_STRUCT2> myStruct2; // n1 is set to 0, s1 is set to "";
</code></pre>
<p>On the downside, it's slower since you're making an extra temporary copy, and the compiler will assign each member to 0 individually, instead of one memset.</p>
http://stackoverflow.com/questions/1613230/uses-of-c-comma-operator/1622805#16228050Answer by Eclipse for Uses of C comma operatorEclipse2009-10-26T02:10:52Z2009-10-26T02:10:52Z<p>It's very useful in adding some commentary into <code>ASSERT</code> macros:</p>
<pre><code>ASSERT(("This value must be true.", x));
</code></pre>
<p>Since most assert style macros will output the entire text of their argument, this adds an extra bit of useful information into the assertion.</p>
http://stackoverflow.com/questions/1604176/size-of-virtual-pointer-c/1604197#16041972Answer by Eclipse for Size of virtual pointer-C++Eclipse2009-10-21T23:22:03Z2009-10-21T23:37:10Z<p>Note that in order to gracefully handle multiple inheritance, there can be more than one VPTR in an object, but in general each is likely to be a simple architecture dependent pointer.</p>
<p>Try running something like this to see how your compiler lays things out:</p>
<pre><code>#include <iostream>
using namespace std;
struct Base
{
int B;
virtual ~Base() {}
};
struct Base2
{
int B2;
virtual ~Base2() {}
};
struct Derived : public Base, public Base2
{
int D;
};
int main(int argc, char* argv[])
{
cout << "Base:" << sizeof (Base) << endl;
cout << "Base2:" << sizeof (Base2) << endl;
cout << "Derived:" << sizeof (Derived) << endl;
Derived *d = new Derived();
cout << d << endl;
cout << static_cast<Base*>(d) << endl;
cout << &(d->B) << endl;
cout << static_cast<Base2*>(d) << endl;
cout << &(d->B2) << endl;
cout << &(d->D) << endl;
delete d;
return 0;
}
</code></pre>
<p>On my 32-bit compiler, this give 8 bytes for both Base classes, and 20 bytes for the Derived class (and double those values when compiled for 64 bits):</p>
<pre><code>4 bytes Derived/Base VPTR
4 bytes int B
4 bytes Derived/Base2 VPTR
4 bytes int B2
4 bytes int D
</code></pre>
<p>You can see how by looking at the first 8 bytes, you can treat a Derived as a Base, and how by looking at the second 8 bytes, you can treat it as a Base2.</p>
http://stackoverflow.com/questions/1561469/is-there-an-alternative-to-inetntop-inetntop-in-windows-xp/1562180#15621801Answer by Eclipse for Is there an alternative to inet_ntop / InetNtop in Windows XP?Eclipse2009-10-13T18:43:40Z2009-10-13T18:52:12Z<p>If you're only dealing with IPv4 addresses, you can use <a href="http://msdn.microsoft.com/en-us/library/ms738564%28VS.85%29.aspx" rel="nofollow"><code>inet_ntoa</code></a>. It's available on Windows 2000 or later. Otherwise you'll have to either require Vista and later, or write your own inet_ntop function.</p>
<p>You could also look at boost - the boost::asio has an <code>inet_ntop</code> implementation that works in Windows: <code>boost::asio::detail::socket_ops::inet_ntop</code>. You can see the source code <a href="http://www.boost.org/doc/libs/1%5F39%5F0/boost/asio/detail/socket%5Fops.hpp" rel="nofollow">here</a>.</p>
http://stackoverflow.com/questions/1562010/how-to-find-the-length-of-an-lpcstr/1562026#15620262Answer by Eclipse for How to find the length of an LPCSTREclipse2009-10-13T18:17:10Z2009-10-13T18:17:10Z<p>Nope.</p>
<p>That's how you find the length of a c-string. You could use <code>strlen</code>, but it still has to go down the whole string and count the number of characters before a <code>'\0'</code>.</p>
http://stackoverflow.com/questions/1561183/c-operator-overloading-understanding-the-google-style-guide/1561192#156119210Answer by Eclipse for C++ operator overloading, understanding the Google style guideEclipse2009-10-13T15:59:45Z2009-10-13T16:05:11Z<p>A functor type would be more like this:</p>
<pre><code>struct CatalogueItemLessThan
{
bool operator()(const CatalogueItem &a, const CatalogueItem &b)
{
}
};
</code></pre>
<p>Then the usage would look like this:</p>
<pre><code>list<CatalogueItem> my_list;
// this is just me playing around
CatalogueItem items[2];
items[0] = CatalogueItem(4, string("box"), string("it's a box"));
items[1] = CatalogueItem(3, string("cat"), string("it's a cat"));
my_list.push_back(items[0]);
my_list.push_back(items[1]);
my_list.sort(CatalogueItemLessThan());
</code></pre>
<p>The main advantage of this, is that is allows you to decouple sorting from the object itself. You can now provide as many types of sorting as you want, and use them in different places. (For example, string can be sorted in lexical order, or case-insensitively, or "<a href="http://stackoverflow.com/questions/34518/natural-sorting-algorithm">naturally</a>". </p>
<p>The advantage of using a functor as opposed to a loose function is that you can pass parameters into the comparison to modify how the functor should behave. </p>
<p>In general, the Google style-guide is not really the best style guide out there (IMHO especially their taking exception to exceptions, but that's another discussion). If an object has an obvious sorting order, I often add in a default <code>operator<</code>. If later, there are extra sort orders I want to add, then I add in loose functions. If at a later time, I need to add parameters to the sort order, then I make them into functors. There's no sense in adding in complexity before it's needed.</p>
http://stackoverflow.com/questions/1488152/what-is-best-efficient-algorithm-for-given-an-unsorted-array-of-positive-integer/1488169#148816911Answer by Eclipse for What is best efficient algorithm for "Given an unsorted array of positive integers and an integer N, return N if N existed in the array or the first number that is smaller than N." Problem ?Eclipse2009-09-28T17:01:24Z2009-09-28T17:07:54Z<p>Scan through the list from beginning to end, if you see a value less than N, hold on to the first one until you reach the end, or find N. If you find N, return it, if you reach the end, return the value you've held on to. Presumably there'd have to be some value to return if all the values were greater than N, but the problem doesn't state that.</p>
<p>O(N) performance, O(1) space usage.</p>
<p>It's a little trickier if you're looking for the largest value smaller than N. In which case, instead of holding on to the first value smaller than N, you simply grab a new value every time you find a value smaller than N, but larger than the value you are currently holding on to.</p>
<p>Simply replace </p>
<pre><code>if(array[i] < N && retVal == -1) retVal = array[i];
</code></pre>
<p>with</p>
<pre><code>if(array[i] < N && retVal < array[i]) retVal = array[i];
</code></pre>
<p>in <a href="http://stackoverflow.com/questions/1488152/what-is-best-efficient-algorithm-for-given-an-unsorted-array-of-positive-integer/1488167#1488167">Adam's answer</a></p>
http://stackoverflow.com/questions/1014632/clean-up-your-include-statements/1019066#10190662Answer by Eclipse for Clean up your #include statements?Eclipse2009-06-19T17:17:01Z2009-09-24T23:11:22Z<p>One big problem with the remove a header and recompile technique is that it can lead to still-compiling, but wrong or inefficient code.</p>
<ol>
<li><p>Template specialization: If you have a template specialization for a specific type that is in one header and the more general template in another, removing the specialization may leave the code in a compilable state, but with undesired results.</p></li>
<li><p>Overload resolution: A similar issue - if you have two overloads of one function in different headers, but that take somewhat compatible types, you can end up removing the version that is the better fit in one case, but still have the code compile. This is probably less likely than the template specialization version, but it is possible.</p></li>
</ol>
http://stackoverflow.com/questions/1446181/simple-fun-c-asterisk-hill/1446623#144662325Answer by Eclipse for Simple fun C++ Asterisk HillEclipse2009-09-18T20:17:36Z2009-09-24T19:35:23Z<p>Because it's C++, the real way to solve this kind of problem is at compile-time with templates:</p>
<pre><code>#include <iostream>
using namespace std;
template <int NStars> struct DrawLine {
static void Go() {
cout << "*";
DrawLine<NStars - 1>::Go();
}
};
template <> struct DrawLine<0> {
static void Go() {
cout << endl;
}
};
template <int NRows, int IRow> struct DrawHill {
static void Go() {
DrawLine<(IRow < (NRows / 2) ? IRow + 1 : NRows - IRow)*2 - 1>::Go();
DrawHill<NRows, IRow+1>::Go();
}
};
template <int NRows> struct DrawHill<NRows, NRows> { static void Go(){} };
int main(int argc, char* argv[]){
DrawHill<5, 0>::Go();
return 0;
}
</code></pre>
<p>Which nicely compiles down to code with absolutely no run-time conditional branches.</p>
<p>Of course if you only know the number at runtime, you'll have to do some more work:</p>
<pre><code>#define DRAWHILL(n) case n: DrawHill<n,0>::Go();break
void DrawTheHill(int nRows)
{
switch(nRows)
{
DRAWHILL(1);
DRAWHILL(3);
DRAWHILL(5);
DRAWHILL(7);
DRAWHILL(9);
DRAWHILL(11);
DRAWHILL(13);
DRAWHILL(15);
default:
throw runtime_error("Fail");
}
}
int main(int argc, char* argv[]){
DrawTheHill(15);
return 0;
}
</code></pre>
<p><strong>Disclaimer</strong>: Don't do this in any real code. This is a terrible way to do it.</p>
http://stackoverflow.com/questions/1400856/i-cant-understand-this-line-dereferencing-an-address-of-private-member-variabl/1400884#140088410Answer by Eclipse for I can't understand this line - dereferencing an address of private member variable or what?!Eclipse2009-09-09T17:05:05Z2009-09-24T14:23:34Z<p>Think of it like this:</p>
<pre><code>(q).*(&HackedQueue::c);
</code></pre>
<p>First, you have HackedQueue::c, which is just the name of a member variable. Then you take &HackedQueue::c, which is a pointer to that member variable. Next you take <code>q</code>, which is just an object reference. Then you use the "bind pointer to member by reference" operator <code>.*</code> to bind the member variable referred to by the member-variable pointer using <code>q</code> as the <code>this</code>.</p>
<p>As to the private member issue, <code>priority_queue::c</code> is only protected, not private, so it should come as no surprise that when you derive from <code>priority_queue</code>, that you can access its protected members.</p>
http://stackoverflow.com/questions/196512/is-there-a-sorted-collection-type-in-net5Is there a sorted collection type in .NET?Eclipse2008-10-13T02:05:47Z2009-09-24T08:47:58Z
<p>I'm looking for a container that keeps all it's items in order. I looked at SortedList, but that requires a separate key, and does not allow duplicate keys. I could also just use an unsorted container and explicitly sort it after each insert.</p>
<p>Usage:</p>
<ul>
<li>Occasional insert</li>
<li>Frequent traversal in order</li>
<li>Ideally not working with keys separate from the actual object, using a compare function to sort.</li>
<li>Stable sorting for equivalent objects is desired, but not required. </li>
<li>Random access is not required.</li>
</ul>
<p>I realize I can just build myself a balanced tree structure, I was just wondering if the framework already contains such a beast.</p>
http://stackoverflow.com/questions/1469687/lookup-table-where-most-sequential-values-point-to-the-same-object/1469748#146974810Answer by Eclipse for Lookup table where most sequential values point to the same object?Eclipse2009-09-24T04:16:30Z2009-09-24T04:16:30Z<p>Use a <code>std::map</code> along with <code>lower_bound</code>:</p>
<pre><code>map<long, string> theMap;
theMap[0] = "lessThan1";
theMap[99] = "1to99";
theMap[1000] = "100to1000";
theMap[numeric_limits<long>::max()] = "greaterThan1000";
cout << theMap.lower_bound(0)->second << endl; // outputs "lessThan1"
cout << theMap.lower_bound(1)->second << endl; // outputs "1to99"
cout << theMap.lower_bound(50)->second << endl; // outputs "1to99"
cout << theMap.lower_bound(99)->second << endl; // outputs "1to99"
cout << theMap.lower_bound(999)->second << endl; // outputs "100to1000"
cout << theMap.lower_bound(1001)->second << endl; // outputs "greaterThan1000"
</code></pre>
<p>Wrap it up in your own class to hide the details and you're good to go.</p>
http://stackoverflow.com/questions/1412081/are-do-while-false-loops-common/1412147#141214738Answer by Eclipse for Are do-while-false loops common?Eclipse2009-09-11T17:04:17Z2009-09-11T19:27:00Z<p>If you're using C++, just use exceptions. If you're using C, the first style works great. But if you really do want the second style, just use gotos - this is exactly the type of situation where gotos really are the clearest construct.</p>
<pre><code> int errorCode = 0;
if ((errorCode = doSomething()) != 0) goto errorHandler;
if ((errorCode = doSomethingElse()) != 0) goto errorHandler;
...
if ((errorCode = doSomethingElseNew()) != 0) goto errorHandler;
return;
errorHandler:
// handle error
</code></pre>
<p>Yes gotos can be bad, and exceptions, or explicit error handling after each call may be better, but gotos are much better than co-opting another construct to try and simulate them poorly. Using gotos also makes it trivial to add another error handler for a specific error:</p>
<pre><code> int errorCode = 0;
if ((errorCode = doSomething()) != 0) goto errorHandler;
if ((errorCode = doSomethingElse()) != 0) goto errorHandler;
...
if ((errorCode = doSomethingElseNew()) != 0) goto errorHandlerSomethingElseNew;
return;
errorHandler:
// handle error
return;
errorHandlerSomethingElseNew:
// handle error
return;
</code></pre>
<p>Or if the error handling is more of the "unrolling/cleaning up what you've done" variety, you can structure it like this:</p>
<pre><code> int errorCode = 0;
if ((errorCode = doSomething()) != 0) goto errorHandler;
if ((errorCode = doSomethingElse()) != 0) goto errorHandler1;
...
if ((errorCode = doSomethingElseNew()) != 0) goto errorHandler2;
errorHandler2:
// clean up after doSomethingElseNew
errorHandler1:
// clean up after doSomethingElse
errorHandler:
// clean up after doSomething
return errorCode;
</code></pre>
<p>This idiom gives you the advantage of not repeating your cleanup code (of course, if you're using C++, RAII will cover the cleanup code even more cleanly.</p>
http://stackoverflow.com/questions/1365276/this-compiles-without-a-warning-in-vc9-at-warning-level-4-why-would-one-not-cons/1395675#13956750Answer by Eclipse for this compiles without a warning in VC9 at warning level 4. Why would one NOT consider this a compiler defect?Eclipse2009-09-08T18:50:49Z2009-09-08T18:50:49Z<p>A couple things that might be worth noting:</p>
<ol>
<li><p>Unless you have all optimization turned off, this is going to compile away to nothing. The memory will not be written to at all - you might as well have written:</p>
<pre><code>#pragma warning(push,4)
int main(){
return 0;
}
#pragma warning(pop)
</code></pre></li>
<li><p>As mentioned elsewhere, doing analysis like this is hard (as in non-computable-trying-to-solve-the-halting-problem). When doing optimizations, it's OK to only do them in the cases where the analysis is easy. When you're looking for warnings, there is a trade-off between being able to find the easy cases, and letting people get dependent on the warnings. At what point is it ok to stop giving the warnings? Yes the locally declared variable being accessed by a constant offset is trivial - but by virtue of being trivial, it's also less important. What if the access is in a trivially inlined function? Or if the access is in a for-loop with constant bounds? These are both easy enough to look for, but they each represent a whole new set of tests, possible regressions, etc... for very little benefit (if any).</p></li>
</ol>
<p>I'm not saying that this warning isn't useful - it's just not as clear-cut as you seem to think it is.</p>
http://stackoverflow.com/questions/1375141/there-a-way-to-determine-at-runtime-if-an-object-can-do-a-method-in-c/1375165#13751653Answer by Eclipse for There a way to determine at runtime if an object can do a method in C++Eclipse2009-09-03T18:33:44Z2009-09-03T18:33:44Z<p>C++ does not have built in run-time reflection. You are perfectly free to build your own reflection implementation into your class hierarchy. This usually involves a static map that gets populated with a list of names and functions. You have to manually register each function you want available, and have consistancy as to calling convention and function signature. </p>
http://stackoverflow.com/questions/1368429/unrolling-small-loops-with-visual-studio-2005/1368657#13686574Answer by Eclipse for Unrolling small loops with Visual Studio 2005Eclipse2009-09-02T16:11:01Z2009-09-02T16:11:01Z<p>Usually you just let the compiler to its job. If the number of loops is known at compile-time, and compiler optimizations are turned on, the compiler will balance code-size with branch reduction and unroll any unrollable loops.</p>
<p>If that's really not what you want, there's also the possibility of doing it yourself with Duff's Device: (from wikipedia)</p>
<pre><code>send(to, from, count)
register short *to, *from;
register count;
{
register n=(count+7)/8;
switch(count%8){
case 0: do{ *to = *from++;
case 7: *to = *from++;
case 6: *to = *from++;
case 5: *to = *from++;
case 4: *to = *from++;
case 3: *to = *from++;
case 2: *to = *from++;
case 1: *to = *from++;
}while(--n>0);
}
}
</code></pre>
<p>This gives you unrolling with runtime determined iteration counts.</p>
<p>If it's still compile-time unrolling you want, and the built in optimizations aren't what you want (if you want finer-grained control), you could create a C++ template to do what you want. This is a pretty trivial template application, and since it is all done at compile time, you don't lose any function inlining or other optimizations that the compiler might do in addition.</p>
http://stackoverflow.com/questions/942357/what-does-it-mean-to-capture-the-mouse-in-wpf1What does it mean to "Capture the mouse" in WPF?Eclipse2009-06-02T23:04:41Z2009-08-29T20:33:56Z
<p>On <code>System.Windows.UIElement</code> there is a <code>CaptureMouse()</code> and a paired <code>ReleaseMouseCapture()</code> method. In this <a href="http://msdn.microsoft.com/en-us/library/bb295243.aspx" rel="nofollow">WPF DragDrop</a> sample they call CaptureMouse on MouseDown and release it on MouseUp. The <a href="http://msdn.microsoft.com/en-us/library/system.windows.uielement.capturemouse.aspx" rel="nofollow">documentation in MSDN</a> is about as useless as it comes - "CaptureMouse -> Captures the mouse."</p>
<p>In my head before trying it I assumed that it somehow locked the mouse inside the UIElement bounds, but that's clearly not the case when I try it. From experimenting, it seems to have something to do with responding to events when the mouse is outside of the UIElement, but not wanting to be a <a href="http://en.wikipedia.org/wiki/Cargo%5Fcult%5Fprogramming" rel="nofollow">cargo cult programmer</a> I don't want to just use it because the example does, I'd like an authoritative description of what it means.</p>
http://stackoverflow.com/questions/1343324/find-out-what-a-random-number-generator-was-seeded-with-in-c/1343469#13434691Answer by Eclipse for Find out what a random number generator was seeded with in C++Eclipse2009-08-27T20:02:02Z2009-08-27T20:02:02Z<p>I don't know what your level of assembly proficiency is, or whether you have access to the source code / debugging symbols for the unmanaged app, but outside of that sort of trickery, there is no feasible way to determine the original seed value. The entire point of random number generators is to come up with a way to give you unpredictable numbers - the relationship between any two given calls to rand() should not be deducible. In cryptographically strong pseudo random number generators, it would be considered a serious flaw to be able to guess the seed based on a generated random number.</p>
<p>The easiest way to do it, would be to start the application under a debugger and set a breakpoint where <code>srand()</code> is called - then just look at the passed parameter. </p>
<p>Next would be to disassemble the app and find out the circumstances of the srand call. It's entirely possible that it's being seeded with the current time - then you can try a bunch of guesses (you can probably narrow it down to a few thousand or so) and see if any give the same sequence of random numbers that the app is using. (Of course this assumes you have some way of knowing what the random values being generated are). It's also possible that the seed is something dumb like '0' all the time. </p>
http://stackoverflow.com/questions/1326118/sum-of-square-of-each-elements-in-the-vector-using-foreach/1329259#13292592Answer by Eclipse for sum of square of each elements in the vector using for_eachEclipse2009-08-25T16:04:04Z2009-08-26T02:27:35Z<p><code>std::for_each</code> is for doing something with <em>each</em> element. If you want get a result from a calculation on <em>all</em> the elements, there's <code>std::accumulate</code>. If you are wanting Haskell's <code>map</code> behaviour, use <code>std::transform</code>. </p>
<p>You can abuse either of these three to do the same thing as any of the others, since ultimately they are just iterating over an iterator (except for <code>transform</code>'s form that takes two iterators as input.) The point is that <code>for_each</code> is not a replacement for map/fold - that should be done by transform/accumulate - although C++ doesn't natively have something that expresses the map/fold concept as well as Haskell does - but both gcc and VC++ support OpenMP which has a much better analogue in <code>#pragma omp parallel for</code>. </p>
<p>Inject in Ruby is a much closer match to calling <code>for_each</code> with a full-fledged functor, like <a href="http://stackoverflow.com/questions/1326118/sum-of-square-of-each-elements-in-the-vector-using-foreach/1326145#1326145">GMan</a> explained above. Lambda functions with variable capture in C++0X will make the behaviour between the two languages even more similar:</p>
<pre><code>int main(void)
{
int arr[] = {1,2,3,4};
std::vector<int> a (arr ,arr + sizeof(arr)/sizeof(arr[0]));
int sum = 0;
std::for_each(a.begin(), a.end(), [&](int i) { sum += i*i;} );
std::cout << "sum of the square of the element is " << sum << std::endl;
}
</code></pre>
http://stackoverflow.com/questions/1294720/whats-the-difference-between-backtracking-and-depth-first-search/1294738#12947382Answer by Eclipse for What's the difference between backtracking and depth first search?Eclipse2009-08-18T15:43:27Z2009-08-18T15:43:27Z<p>Usually, a depth-first-search is a way of iterating through an actual graph/tree structure looking for a value, whereas backtracking is iterating through a problem space looking for a solution. Backtracking is a more general algorithm that doesn't necessarily even relate to trees.</p>
http://stackoverflow.com/questions/204396/returning-objects-in-c/418252#4182524Answer by Eclipse for Returning Objects in C++Eclipse2009-01-06T21:29:31Z2009-08-14T15:22:00Z<p>Depending on your usage, there are a couple of options you could go with here:</p>
<ol>
<li><p>Make a copy every time you create an animal:</p>
<pre><code>class AnimalLister
{
public:
Animal getNewAnimal()
{
return Animal();
}
};
int main() {
AnimalLister al;
Animal a1 = al.getNewAnimal();
Animal a2 = al.getNewAnimal();
}
</code></pre>
<p>Pros:</p>
<ul>
<li>Easy to understand. </li>
<li>Requires no extra libraries or supporting code.</li>
</ul>
<p>Cons:</p>
<ul>
<li>It requires <code>Animal</code> to have a well-behaved copy-constructor.</li>
<li>It can involve a lot of copying if <code>Animal</code> is larg and complex, although <a href="http://www.efnetcpp.org/wiki/RVO" rel="nofollow">return value optimization</a> can alleviate that in many situations.</li>
<li>Doesn't work if you plan on returning sub-classes derived from <code>Animal</code> as they will be <a href="http://cplusplusgems.blogspot.com/2005/10/what-is-slicing-problem-class-base.html" rel="nofollow">sliced</a> down to a plain <code>Animal</code>, losing all the extra data in the sub-class. </li>
</ul></li>
<li><p>Return a <code>shared_ptr<Animal></code>:</p>
<pre><code>class AnimalLister
{
public:
shared_ptr<Animal> getNewAnimal()
{
return new Animal();
}
};
int main() {
AnimalLister al;
shared_ptr<Animal> a1 = al.getNewAnimal();
shared_ptr<Animal> a2 = al.getNewAnimal();
}
</code></pre>
<p>Pros:</p>
<ul>
<li>Works with object-hierarchies (no object slicing).</li>
<li>No issues with having to copy large objects.</li>
<li>No need for <code>Animal</code> to define a copy constructor.</li>
</ul>
<p>Cons:</p>
<ul>
<li>Requires either Boost or TR1 libraries, or another smart-pointer implementation.</li>
</ul></li>
<li><p>Track all <code>Animal</code> allocations in <code>AnimalLister</code> </p>
<pre><code>class AnimalLister
{
vector<Animal *> Animals;
public:
Animal *getNewAnimal()
{
Animals.push_back(NULL);
Animals.back() = new Animal();
return Animals.back();
}
~AnimalLister()
{
for(vector<Animal *>::iterator iAnimal = Animals.begin(); iAnimal != Animals.end(); ++iAnimal)
delete *iAnimal;
}
};
int main() {
AnimalLister al;
Animal *a1 = al.getNewAnimal();
Animal *a2 = al.getNewAnimal();
} // All the animals get deleted when al goes out of scope.
</code></pre>
<p>Pros:</p>
<ul>
<li>Ideal for situations where you need a bunch of <code>Animal</code>s for a limited amount of time, and plan to release them all at once.</li>
<li>Easily adaptable to custom memory-pools and releasing all the <code>Animal</code>s in a single <code>delete</code>.</li>
<li>Works with object-hierarchies (no object slicing).</li>
<li>No issues with having to copy large objects.</li>
<li>No need for <code>Animal</code> to define a copy constructor.</li>
<li>No need for external libraries.</li>
</ul>
<p>Cons:</p>
<ul>
<li>The implementation as written above is not thread-safe</li>
<li>Requires extra support code</li>
<li>Less clear than the previous two schemes</li>
<li>It's non-obvious that when the AnimalLister goes out of scope, it's going to take the Animals with it. You can't hang on to the Animals any longer than you hang on the AnimalLister.</li>
</ul></li>
</ol>
http://stackoverflow.com/questions/1045107/what-different-terms-mean-the-same-thing-or-dont-but-people-think-they-do/1214793#12147930Answer by Eclipse for What different terms mean the same thing (or don't, but people think they do)?Eclipse2009-07-31T20:44:02Z2009-07-31T20:53:04Z<p>Pass values by reference != pass references by value.</p>
<p>Pass values by reference in C++:</p>
<pre><code>struct Bar
{
int X;
Bar(int x) : X(x) {}
Bar &operator=(const Bar &rhs) { X = rhs.X; }
};
void foo(Bar &b, Bar &b2)
{
b = Bar(1);
b2.X = 1;
}
int main()
{
Bar b(0);
Bar b2(0);
foo(b, b2);
cout << b.X << ", " << b2.X; // prints 1, 1
}
</code></pre>
<p>Pass references by value (C# / Java)</p>
<pre><code>class Bar
{
public int X;
public Bar(int x) { X = x; }
}
void foo(Bar b, Bar b2)
{
b = new Bar(1);
b2.X = 1;
}
int main()
{
Bar b = new Bar(0);
Bar b2 = new Bar(0);
foo(b, b2);
Console.Write("{0}, {1}", b.X. b2.X); // prints 0, 1
}
</code></pre>
http://stackoverflow.com/questions/863991/using-c-to-edit-the-registry/864127#8641271Answer by Eclipse for Using C++ to edit the registryEclipse2009-05-14T15:44:50Z2009-07-28T15:55:15Z<p>If you're only trying to temporarily disable the cd-rom autorun, take a look at this <a href="http://msdn.microsoft.com/en-us/library/cc144204.aspx#suppressing" rel="nofollow">msdn article</a> first. Actually, look at it first before disabling it permanently anyway. In general, look for an API before messing around with the registry - and then only use documented registry entries, unless you want to end up as the subject of one of Raymond Chen's <a href="http://blogs.msdn.com/oldnewthing/archive/2005/03/09/390706.aspx" rel="nofollow">rants</a>.</p>
http://stackoverflow.com/questions/1809364/user-mode-synchronization-library-for-c/1809415#1809415Comment by Eclipse on User-mode synchronization library for C++Eclipse2009-11-27T17:19:55Z2009-11-27T17:19:55ZThey are user-mode only for uncontested locks. When you get highly-contested locks, you'll get switching to kernel-mode.http://stackoverflow.com/questions/724261/unions-in-c/724327#724327Comment by Eclipse on Unions in CEclipse2009-11-24T22:13:50Z2009-11-24T22:13:50ZNo, but the words kind of do, they both have A..pl..es, so the analogy is quite good really.http://stackoverflow.com/questions/1743999/function-returning-variable-by-refrence/1744884#1744884Comment by Eclipse on Function returning variable by refrence???Eclipse2009-11-16T23:57:45Z2009-11-16T23:57:45ZUm, yes, thanks - a little spaced out today. I mentioned non-const, since you can't modify a const reference anyway, but that doesn't much matter in the context of the rest of what I said.http://stackoverflow.com/questions/1733049/p2p-or-distributed-system-implementationComment by Eclipse on P2P or Distributed System implementationEclipse2009-11-14T03:56:22Z2009-11-14T03:56:22Z@jldupont: yes it's a duplicate, it sounds like he's responding to eliben's suggestion to not make it wiki. http://stackoverflow.com/questions/1725363/prime-factorization/1725405#1725405Comment by Eclipse on Prime FactorizationEclipse2009-11-12T21:58:53Z2009-11-12T21:58:53ZAnother thing to note, is the ease of leaking an algorithm vs. other conspiracy ideas. If, for example, the military had captured an alien, there's almost no bit of evidence that is going to convince everyone (even physical evidence is going to be doubted). On the other hand, if someone has an algorithm to factor a number in polynomial time, no further proof is needed - it either works, or it doesn't.http://stackoverflow.com/questions/393462/defend-zero-based-arrays/393590#393590Comment by Eclipse on Defend zero-based arraysEclipse2009-11-08T00:20:37Z2009-11-08T00:20:37Z+1 for half-open intervals - it just makes everything easier.http://stackoverflow.com/questions/1662905/using-valid-static-member-function-of-class-that-cant-be-installed/1663219#1663219Comment by Eclipse on Using valid STATIC member function of class that can't be installedEclipse2009-11-02T19:46:01Z2009-11-02T19:46:01Z@Artyom: The difference in your issue is the virtual function. Since you are instantiating an instance of foo<short>, the compiler would have to analyze the entire program to make sure that base_foo::Go is never called on anything that could be a foo<short>. If it can't guarantee that, then it has to provide a definition for foo<short>::Go to place in the vtable.http://stackoverflow.com/questions/1662905/using-valid-static-member-function-of-class-that-cant-be-installed/1662921#1662921Comment by Eclipse on Using valid STATIC member function of class that can't be installedEclipse2009-11-02T19:20:18Z2009-11-02T19:20:18ZThis satisfies MSVC on my system, but you'll have to wait for someone like litb to elucidate on the standard.http://stackoverflow.com/questions/1662905/using-valid-static-member-function-of-class-that-cant-be-installed/1662921#1662921Comment by Eclipse on Using valid STATIC member function of class that can't be installedEclipse2009-11-02T19:18:06Z2009-11-02T19:18:06Z@Artyom: I think Doug meant that you should supply a dummy typedef where his comment was:
template<typename C>
struct c_traits
{
typedef int int_type;
};http://stackoverflow.com/questions/1650987/whats-the-best-way-to-optimise-the-build-of-a-project-which-uses-boostComment by Eclipse on What's the best way to optimise the build of a project which uses Boost?Eclipse2009-10-30T19:58:17Z2009-10-30T19:58:17ZHere's a question that has several good answers for speeding up compilation time: <a href="http://stackoverflow.com/questions/373142/what-techniques-can-be-used-to-speed-up-c-compilation-times" rel="nofollow" title="what techniques can be used to speed up c compilation times">stackoverflow.com/questions/373142/…</a>http://stackoverflow.com/questions/1641533/why-does-derivative-trading-position-always-require-c-knowledgeComment by Eclipse on Why does derivative trading position always require C++ knowledge?Eclipse2009-10-29T03:58:30Z2009-10-29T03:58:30ZIt's because C++ is so full of quirks, that they assume that if you've mastered it, you must be smart enough for the trading business.http://stackoverflow.com/questions/599745/most-daunting-error-message/621222#621222Comment by Eclipse on Most daunting error message?Eclipse2009-10-27T18:27:48Z2009-10-27T18:27:48ZThe error only tells you that the two types are incompatible - trying to nail down the fact that one has a const in it and the other doesn't is lots of fun...http://stackoverflow.com/questions/112085/is-this-c-structure-initialization-trick-safe/115878#115878Comment by Eclipse on Is this C++ structure initialization trick safe?Eclipse2009-10-26T23:03:58Z2009-10-26T23:03:58ZBut where's the fun in that...http://stackoverflow.com/questions/1626846/how-do-i-allocate-variably-sized-structures-contiguously-in-memory/1626884#1626884Comment by Eclipse on How do I allocate variably-sized structures contiguously in memory?Eclipse2009-10-26T19:51:02Z2009-10-26T19:51:02ZDon't do this unless you want to learn about slicing. You can store pointers to a superclass in an STL container, but if you start trying to store subclasses in a container specialized for the superclass, you'll end up losing any subclass information.http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/114826#114826Comment by Eclipse on What are Code Smells? What is the best way to correct them?Eclipse2009-10-25T19:20:37Z2009-10-25T19:20:37Z@Graeme - Unless you can get the type at compile time, switching on type is almost certainly going to be slower than a virtual call.