User coppro - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T19:56:32Zhttp://stackoverflow.com/feeds/user/16855http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio2Using an external tool for C# builds in Visual Studiocoppro2009-11-19T16:46:21Z2009-11-28T19:15:14Z
<p>When using Visual Stdio 2008, you can make a C++ project build with an internal tool rather than having the IDE invoke MSVC directly. This improves the consistency of builds across platforms if a cross-platform build system is used.</p>
<p>However, I cannot figure out how to do the same as a C# project. It would be possible to simply register it as a native project with C# sources, however, you lose some of the advantages gained through having a C# project. More importantly, it will mean that allowing a project to build both directly and with an external tool (which is sadly necessary) will require two separate projects, rather than merely creating an alternate build configuration to invoke the external tool.</p>
<p>Does anyone know if it's possible to prevent Visual Studio from invoking <code>csc</code> by itself and instead call an external tool?</p>
<p>EDIT: Apparently there has some misunderstanding. The goal here is not to compile anything outside of Visual Studio. Instead, it's to allow Visual Studio to serve as the IDE but not the build system. There is already a (Scons-based) build system capable of compiling the C# and C++ sources, and Visual Studio has been configured to invoke Scons for compilation of C++ projects. I'm trying to configure it so that when you hit the 'Build' button, it will invoke Scons for the C# projects as well as the C++ ones.</p>
http://stackoverflow.com/questions/1752063/simulate-c-function-template-instantiation-with-implicit-conversion/1752423#17524231Answer by coppro for simulate C++ function template instantiation with implicit conversioncoppro2009-11-17T22:46:08Z2009-11-18T00:37:35Z<p>Try the following:</p>
<pre><code>template <template <typename> View, typename T>
struct Adapter
{
// Leave empty to cause errors if used, or you could
// provide a generic adapter for View<typename T::value_type>
}
// Partial specialization for a given base.
template <typename T>
struct Adapter<MatrixView, T> : MatrixView<typename T::value_type>
{
const T& t;
Adapter (const T& t)
: t(t)
{}
void some_virtual()
{
// Do stuff
}
}
template <template <typename> View, typename T>
const View<T>& adapt (const View<T>& v)
{
return v;
}
template <template <typename> View, typename T>
View<T> adapt (const T& t)
{
return Adapter<View, T>(t);
}
template <typename T, typename U>
foo(const MatrixViewBase<T> &Mview, const MatrixViewBase<U> &Mview2);
template <typename T, typename U>
foo (const T& t, const U& u)
{
return foo(adapt<MatrixViewBase>(t), adapt<MatrixViewBase>(u));
}
</code></pre>
<p>I put <code>const</code> in everywhere I could; you don't have to use it in every situation if it's not appropriate. You can use specializations of <code>Adapter</code> for a given <code>T</code> to further tailor the behavior.</p>
<p>Interestingly enough, this is the first time I've ever recommended template template parameters.</p>
http://stackoverflow.com/questions/1751929/modifying-binary-files/1752053#17520530Answer by coppro for Modifying binary filescoppro2009-11-17T21:43:10Z2009-11-17T21:43:10Z<p><code>search</code> won't work on an <code>istream_iterator</code> because of the nature of the iterator. It's an <em>input iterator</em>, which means it simply moves forward - this is because it reads from the stream, and once it's read from the stream, it can't go back. <code>search</code> requires a <em>forward iterator</em>, which is an input iterator where you can stop, make a copy, and move one forward while keeping the old one. An example of a forward iterator is a singly-linked list. You can't go backwards, but you can remember where you are and restart from there.</p>
<p>The speed issue is because vector is truly terrible at handling unknown data. Every time it runs out of room, it copies the whole buffer over to new memory. Replace it with a <code>deque</code>, which can handle data arriving one by one. You will also likely get improved performance trying to read from the stream in blocks at a time, as character-by-character access is a pretty bad way to load an entire file into memory.</p>
http://stackoverflow.com/questions/1751915/template-function-with-dependent-type-parameters-within-template-class/1751979#17519793Answer by coppro for Template function with dependent type parameters within template classcoppro2009-11-17T21:34:10Z2009-11-17T21:34:10Z<p>The compiler is simply unable to deduce types from this context.</p>
<p>Suppose <code>std::wstring::const_iterator</code> is actually <code>const wchar_t*</code>, which is likely. In that case, how does the compiler know it should substitute <code>std::wstring</code> rather than any other type <code>T</code> with <code>T::const_iterator</code> being <code>const wchar_t*</code> (perhaps <code>vector<wchar_t></code>)?</p>
<p>It's impossible for the compiler to tell exactly. For similar reasons, you cannot deduce <code>some_template<T>::type</code> in function calls.</p>
<p>In your case, the workaround is easy. You don't actually need the container type - templating on the iterator types will work fine:</p>
<pre><code>template <typename I1, typename I2>
static bool SomeOperator(const I1& p_Begin1, const I1& p_End1,
const I2& p_Begin2, const I2& p_End2)
{ /* stuff */ }
</code></pre>
<p>If you find yourself in a situation where you need the container type, you will have to either pass the container around or explicitly specify the type in the function call.</p>
http://stackoverflow.com/questions/1751862/need-help-understanding-using-c-map-as-an-asscoiative-array/1751909#17519090Answer by coppro for Need help understanding using c++ map as an asscoiative arraycoppro2009-11-17T21:25:32Z2009-11-17T21:25:32Z<p>What happens if you simply execute <code>map[1];</code>? This may involve internal copies, depending on the implementation of <code>map</code> your standard library uses.</p>
http://stackoverflow.com/questions/1744407/cache-line-alignment-need-clarification-on-article/1744793#17447934Answer by coppro for Cache Line Alignment (Need clarification on article)coppro2009-11-16T20:53:59Z2009-11-16T20:53:59Z<p>You can't have arrays of size 0, so 1 is required to make it compile. However, the current draft version of the spec says that such padding is unecessary; the compiler must pad up to the struct's alignment.</p>
<p>Note also that this code is ill-formed if <code>CACHE_LINE_SIZE</code> is smaller than <code>alignof(T)</code>. To fix this, you should probably use <code>[[align(CACHE_LINE_SIZE), align(T)]]</code>, which will ensure that a smaller alignment is never picked.</p>
http://stackoverflow.com/questions/1744070/why-should-exceptions-be-used-conservatively/1744758#17447582Answer by coppro for Why should exceptions be used conservatively?coppro2009-11-16T20:46:59Z2009-11-16T20:46:59Z<p>My approach to error handling is that there are three fundamental types of errors:</p>
<ul>
<li>An odd situation that can be handled at the error site. This might be if a user inputs an invalid input at a command line prompt. The correct behavior is simply to complain to the user and loop in this case. Another situation might be a divide-by-zero. These situations aren't really error situations, and are usually caused by faulty input.</li>
<li>A situation like the previous kind, but one that can't be handled at the error site. For instance, if you have a function that takes a filename and parses the file with that name, it might not be able to open the file. In this case, it can't deal with the error. This is when exceptions shine. Rather than use the C approach (return an invalid value as a flag and set a global error variable to indicate the problem), the code can instead throw an exception. The calling code will then be able to deal with the exception - for instance to prompt the user for another filename.</li>
<li>A situation that Should Not Happen. This is when a class invariant is violated, or a function receives an invalid paramter or the like. This indicates a logic failure within the code. Depending on the level of failure, an exception may be appropriate, or forcing immediate termination may be preferable (as <code>assert</code> does). Generally, these situations indicate that something has broken somewhere in the code, and you effectively cannot trust anything else to be correct - there may be rampant memory corruption. Your ship is sinking, get off.</li>
</ul>
<p>To paraphrase, exceptions are for when you have a problem you can deal with, but you can't deal with at the place you notice it. Problems you can't deal with should simply kill the program; problems you can deal with right away should simply be dealt with.</p>
http://stackoverflow.com/questions/613479/where-can-i-find-standard-bnf-or-yacc-grammar-for-c-language/613722#6137222Answer by coppro for Where can I find standard BNF or YACC grammar for C++ language?coppro2009-03-05T06:00:01Z2009-11-16T20:28:56Z<p>Jared's link is the closest thing to a context-free grammar you can get. Certain things do need to be delayed for later, but that is by some arguments better than the context-sensitive grammar of C++.</p>
<p>To make things worse, C++1x will complexify the grammar significantly. To get as far as a perfect parse of C++, a parser will need to implement enough of the standard to correctly do overload resolution, including template argument deduction, which in turn will require the concepts mechanism, lambdas, and in effect almost all of the language, except for two-stage name lookup and exception specifications which, if I recall correctly, do not need actual implementation to parse a program successfully.</p>
<p>In effect, you are halfway to a compiler if you can parse C++.</p>
http://stackoverflow.com/questions/332030/when-should-staticcast-dynamiccast-and-reinterpretcast-be-used/332086#33208656Answer by coppro for When should static_cast, dynamic_cast and reinterpret_cast be used?coppro2008-12-01T20:26:41Z2009-11-14T22:07:51Z<h1><code>static_cast</code></h1>
<p><code>static_cast</code> is the first cast you should attempt to use. It does things like implicit conversions between types (such as int to float, or pointer to void*), and it can also call explicit conversion functions (or implicit ones). In many cases, explicitly stating <code>static_cast</code> isn't necessary, but it's important to note that the <code>T(something)</code> syntax is equivalent to <code>(T)something</code> and should be avoided (more on that later). A <code>T(something, something_else)</code> is safe, however, and guaranteed to call the constructor.</p>
<p><code>static_cast</code> can also cast through inheritance hierarchies. It is unecessary when casting upwards (towards a base class), but when casting downwards it can be used as long as it doesn't cast through <code>virtual</code> inheritance. It does not do checking, however, and it is undefined behavior to <code>static_cast</code> down a hierarchy to a type that isn't actually the type of the object.</p>
<h1><code>const_cast</code></h1>
<p><code>const_cast</code> can be used to remove or add const to a variable; no other C++ cast is capable of this (not even <code>reinterpret_cast</code>). It is important to note that using it is only undefined if the orginial variable is <code>const</code>; if you use it to take the <code>const</code> of a reference to something that wasn't declared with <code>const</code>, it is safe. This can be useful when overloading member functions based on <code>const</code>, for instance. It can also be used to add <code>const</code> to an object, such as to call a member function overload.</p>
<p><code>const_cast</code> also works similarly on <code>volatile</code>, though that's less common.</p>
<h1><code>dynamic_cast</code></h1>
<p><code>dynamic_cast</code> is almost exclusively used for handling polymorphism. You can cast a pointer or reference to any polymorphic type to any other class type (a polymorphic type has at least one virtual function, declared or inherited). You don't have to use it to cast downwards, you can cast sideways or even up another chain. The <code>dynamic_cast</code> will seek out the desired object and return it if possible. If it can't, it will return <code>NULL</code> in the case of a pointer, or throw <code>std::bad_cast</code> in the case of a reference.</p>
<p><code>dynamic_cast</code> has some limitations, though. It doesn't work if there are multiple objects of the same type in the inheritance hierarchy (the so-called 'dreaded diamond') and you aren't using <code>virtual</code> inheritance. It also can only go through public inheritance - it will always fail to travel through <code>protected</code> or <code>private</code> inheritance. This is rarely an issue, however, as such forms of inheritance are rare.</p>
<h1><code>reinterpret_cast</code></h1>
<p><code>reinterpret_cast</code> is the most dangerous cast, and should be used very sparingly. It turns one type directly into another - such as casting the value from one pointer to another, or storing a pointer in an <code>int</code>, or all sorts of other nasty things. Largely, the only guarantee you get with <code>reinterpret_cast</code> is that if you cast the result back to the original type, you will get the same value. Other than that, you're on your own. <code>reinterpret_cast</code> cannot do all sorts of conversions; in fact it is relatively limited. It should almost never be used (even interfacing with C code using <code>void*</code> can be done with <code>static_cast</code>).</p>
<h1>C casts</h1>
<p>A C cast (<code>(type)object</code> or <code>type(object)</code>) is defined as the first of the following which succeeds:</p>
<ul>
<li><code>const_cast</code></li>
<li><code>static_cast</code></li>
<li><code>static_cast</code>, then <code>const_cast</code></li>
<li><code>reinterpret_cast</code></li>
<li><code>reinterpret_cast</code>, then <code>const_cast</code></li>
</ul>
<p>It can therefore be used as a replacement for other casts in some instances, but can be extremely dangerous because of the ability to devolve into a <code>static_cast</code>, and the latter should be preferred when explicit casting is needed, unless you are sure <code>static_cast</code> will succeed or <code>reinterpret_cast</code> will fail. Even then, consider the longer, more explicit option.</p>
<p>C-style casts also ignore access control when performing a <code>static_cast</code>, which means that they have the ability to perform an operation that no other cast can. This is mostly a kludge, though, and in my mind is just another reason to avoid C-style casts.</p>
<p>I hope this helps!</p>
http://stackoverflow.com/questions/1726966/how-to-get-started-on-learning-new-language/1727040#17270401Answer by coppro for how to get started on learning new languagecoppro2009-11-13T03:54:14Z2009-11-13T03:54:14Z<p>Here are some things that I find help when learning a new language (and they may not work for you):</p>
<ul>
<li>Get a spec. You will make mistakes, and so you need to know how to use things <em>properly</em>, not how a tutorial might say.</li>
<li>Start it small. What counts as 'small' to you depends on your prior programming experience. Console applications are good because they're simple and let you get familiar with the language without having to deal with a graphical framework.</li>
<li>Have a defined goal. It could be something like writing a simple calculator, a puzzle solver, or some exercises - <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> is a common favorite, but I also enjoy the <a href="http://cemc.uwaterloo.ca/contests/past%5Fcontests.html#ccc" rel="nofollow">Candian Computing Competition</a> problems - I find they tend to be less abstract than Project Euler.</li>
<li>Learn the language's paradigm. Don't try to do something the language isn't meant to do. This is one of the most important bits - if you try to code Lisp in C, you will know only pain. If you are learning Erlang, use the process model, or else you really aren't learning the language. It's important not to try to force the language to do things it can't, or else you won't enjoy it. You will find this tough, especially given that you're a Java programmer who's been indoctrinated with The One True Object-Oriented Way (tip: it's not). </li>
</ul>
http://stackoverflow.com/questions/1674980/who-deletes-the-memory-allocated-during-a-new-operation-which-has-exception-in/1675140#16751407Answer by coppro for Who deletes the memory allocated during a "new" operation which has exception in constructor coppro2009-11-04T16:49:50Z2009-11-04T16:49:50Z<p>If an object cannot complete destruction because the constructor throws an exception, the first thing to happen (this happens as part of the constructor's special handling) is that all member variables to have been constructed are destroyed - if an exception is thrown in the initializer list, this means that only elements for which the initializer has completed are destroyed.</p>
<p>Then, if the object was being allocated with <code>new</code>, the appropriate deallocation function (<code>operator delete</code>) is called with the same additional arguments that were passed to <code>operator new</code>. For instance, <code>new (std::nothrow) SomethingThatThrows()</code> will allocate memory with <code>operator new (size_of_ob, nothrow)</code>, attempt to construct <code>SomethingThatThrows</code>, destroy any members that were successfully constructed, then call <code>operator delete (ptr_to_obj, nothrow)</code> when an exception is propagated - it won't leak memory.</p>
<p>What you have to be careful is allocating several objects in succession - if one of the later ones throws, the previous ones will not be automatically be deallocated. The best way around this is with smart pointers, because as local objects their destructors will be called during stack unwinding, and their destructors will properly deallocate memory.</p>
http://stackoverflow.com/questions/1675021/out-of-four-stdvector-objects-select-the-one-with-the-most-elements/1675080#16750809Answer by coppro for Out of four std::vector objects select the one with the most elementscoppro2009-11-04T16:41:31Z2009-11-04T16:41:31Z<p>Here's one solution (aside from Pesto's far-too-straightforward approach) - I've avoided <code>bind</code> and C++0x lambdas for explanatory purposes, but you could use them to remove the need for a separate function. I'm also assuming that with two vectors with an equal number of elements, which one is picked is irrelevant.</p>
<pre><code>template <typename T> bool size_less (const T* lhs, const T* rhs) {
return lhs->size() < rhs ->size();
}
void foo () {
vector<T>* vecs[] = {&vec1, &vec2, &vec3, &vec4};
vector<T>& vec = std::min_element(vecs, vecs + 4, size_less<vector<T> >);
}
</code></pre>
http://stackoverflow.com/questions/1663961/how-to-hide-delete-on-a-class-hierarchy/1664008#16640080Answer by coppro for How to hide "delete" on a class hierarchy?coppro2009-11-02T22:01:58Z2009-11-02T22:01:58Z<p>You have a number of conflicting goals here. Are you trying to restrict use of <code>delete</code> on a single type, or on an entire class hieararchy? I think you need to look into using custom allocation/deallocation functions (also known as <code>opeartor new</code> and <code>operator delete</code>). In particular, you will want your object to have its own <code>operator new</code> and <code>operator delete</code> functions (possibly with extra parameters) to make sure the object gets allocated and deallocated correctly.</p>
<p>I won't explain the use of those functions here, as writing a correct (e.g. exception-safe, etc.) allocation/deallocation function is not the simplest of tasks, and there are a number of additional difficulties to be wary of. As a result, you're best off finding a good piece of documentation on writing them (and I don't know of one offhand, sorry).</p>
http://stackoverflow.com/questions/1663289/why-does-initialization-of-a-template-type-require-a-repeat-of-the-type-of-the-va/1663962#16639620Answer by coppro for Why does initialization of a template type require a repeat of the type of the variable?coppro2009-11-02T21:53:44Z2009-11-02T21:53:44Z<p>The reason is because of the fact that resolving overloads to templated functions is difficult already, without having to deal with the nastiness that is partial specialization and template members of templates (I know it sounds confusing. That's because it's confusing.)</p>
<p>Basically, determining what to call when you have this:</p>
<pre><code>void foo (int i);
template <typename T> void foo (T t);
</code></pre>
<p>is a lot easier than figuring out what to call when you have this:</p>
<pre><code>template <typename T> class foo {
foo (T t);
template <typename U> foo (U u);
};
</code></pre>
<p>The possibilities for constructors are too immense to be able to sort out through some heuristic like is done for function templates, so the standard simply doesn't even try (it's the right call, in my opinion). Instead, templated types can provide <code>make_****</code> functions (<code>make_pair</code> comes to mind) which serve as templated constructors.</p>
http://stackoverflow.com/questions/378630/specify-ordinals-of-c-exported-functions-in-a-dll/378751#3787514Answer by coppro for Specify ordinals of C++ exported functions in a DLLcoppro2008-12-18T18:29:16Z2009-11-02T07:54:33Z<p>Well, I don't have experience with ordinals (which look like some ugly, compiler-specific thing), but I can help you with making C++/C code compatible.</p>
<p>Suppose, in C++, that your header file looks like this:</p>
<pre><code>class MyClass
{
void foo(int);
int bar(int);
double bar(double);
void baz(MyClass);
};
</code></pre>
<p>You can make it C-compatible by doing the following:</p>
<pre><code>#ifdef __cplusplus
#define EXTERN_C extern "C"
// Class definition here; unchanged
#else
#define EXTERN_C
typedef struct MyClass MyClass;
#endif
EXTERN_C void MyClass_foo (MyClass*, int);
EXTERN_C int MyClass_bar_int (MyClass*, int);
EXTERN_C double MyClass_bar_double (MyClass*, double);
EXTERN_C void MyClass_baz (MyClass*, MyClass*);
</code></pre>
<p>In the C++ source file, you just define the various <code>extern "C"</code> functions to pass to the desired member functions, like this (this is only one; the rest work similarly)</p>
<pre><code>extern "C" void MyClass_foo (MyClass* obj, int i)
{
obj->foo(i);
}
</code></pre>
<p>The code will then have a C interface, without having to change the C++ code at all (except for declarations in the header; but those could also be moved to another file <code>"myclass_c.h"</code> or the like). All the functions declared/defined extern "C" won't be mangled, so you can do other operations on them easily. You will also probably want functions to construct/destroy instances of MyClass (you can, of course, use <code>new</code>/<code>delete</code> for this).</p>
http://stackoverflow.com/questions/1611186/remote-programming-and-debugging/1611303#16113031Answer by coppro for Remote programming and debuggingcoppro2009-10-23T03:56:23Z2009-10-23T03:56:23Z<p>If you can convince your system administrator to install the libraries (an X server is not required), you can use X forwarding with SSH, which will allow you to execute X apps remotely and have them come up on your local server. If you're using Linux locally, you probably have X running already, and if you are using Windows, you can use the Xming server (with a little configuration to get it to accept remote connections). For debugging, if you need a separate shell, just set another instance of SSH going and perform debugging from another process.</p>
<p>As for portability, it depends on what you are trying to do. If all you want is a simple console-based application, you shouldn't run into any major portability concerns. If you are using more complex code, portability depends heavily on two things. The first is the choice of libraries - sure, you can run applications written for Win32 on Linux with Wine or actually compile them with Winelib, but it's not a pleasant experience. If you choose something more portable like Qt or gtkmm, you'll have a much easier time of things. Likewise for filesystem code - using a library like Boost.Filesystem will make things significantly simpler. The second thing that makes a big difference for portability is to <em>follow the documentation</em>. It's hard to stress this enough - many things that you do incorrectly will have varied results on different platforms, especially if you are using libraries that don't do checks (note: I highly recommend checking code against debug standard libraries for this reason). I once spent nearly a weak tracking down a portability bug that arose because someone didn't read the docs and was passing an invalid parameter.</p>
http://stackoverflow.com/questions/1607357/warning-411-class-foo-defines-no-constructor-to-initialize-the-following/1608369#16083691Answer by coppro for warning #411: class foo defines no constructor to initialize the following:coppro2009-10-22T16:19:33Z2009-10-22T16:19:33Z<p>Check the compiler's documentation to see if there's a workaround. Your code is perfectly compliant, so without any more information, it's impossible to help.</p>
http://stackoverflow.com/questions/1597040/property-function-style-conventions-being-effected-by-void/1597116#15971162Answer by coppro for Property function style conventions being effected by void*.coppro2009-10-20T20:30:32Z2009-10-21T00:50:27Z<p>You could have your <code>Metadata</code> functions return references to pointers:</p>
<pre><code>class foo {
int& Value();
const int& Value() const;
void*& Metadata()
const void* const & Metadata() const
};
</code></pre>
<p>Another alternative is to use overloading:</p>
<pre><code>class foo{
int Value() const;
void Value(int);
void* Metadata() const;
void Metatdata(void*);
};
</code></pre>
<p>If you go this route, you could also make the setters return the old value for convenience.</p>
http://stackoverflow.com/questions/1591269/using-an-abstract-class-to-implement-a-stack-of-elements-of-the-derived-class/1591287#15912870Answer by coppro for Using an abstract class to implement a stack of elements of the derived classcoppro2009-10-19T21:32:07Z2009-10-19T21:32:07Z<p>Since <code>shape3d</code> is an abstract base class, you probably want your stack to store pointers to <code>shape3d</code>, rather than actual objects.</p>
http://stackoverflow.com/questions/1591114/embedded-scripting-engine-for-dsl/1591202#15912020Answer by coppro for Embedded scripting engine for DSLcoppro2009-10-19T21:17:20Z2009-10-19T21:17:20Z<p>You seem to have very specific requirements for picking a generic DSL. You may want to try a generic DSL library (e.g. <a href="http://www.boost.org/doc/libs/1%5F37%5F0/doc/html/proto.html" rel="nofollow">Boost.Proto</a>) rather than a prexisting-embedded language.</p>
http://stackoverflow.com/questions/1585708/copy-constructor-and-default-constructor/1586324#15863240Answer by coppro for Copy Constructor and default constructorcoppro2009-10-18T23:29:33Z2009-10-18T23:29:33Z<p>As AndreyT said, if you explicitly declare any constructor, including a copy constructor, the compiler will not implicitly declare or define a default constructor.</p>
<p>This is not always a problem.</p>
<p>If you do not want your class to be default-constructible, then it's perfectly fine not to declare a default constructor. But if you want it to be default-constructible (for instance, if you want to uncomment the <code>X x1;</code> line in your example), then you must declare and define a default constructor.</p>
<p>Also note that a default constructor is any constructor that can be called with no arguments, not just one with no arguments. <code>X::X(int = 5)</code> is a perfectly fine default constructor.</p>
http://stackoverflow.com/questions/371966/are-there-any-good-reasons-why-i-should-not-use-python43Are there any good reasons why I should not use Python?coppro2008-12-16T17:10:15Z2009-10-15T20:16:03Z
<p>I've heard from <a href="http://xkcd.com/353/" rel="nofollow">reliable sources</a> that Python is a great language that every programmer can learn, but I've heard so much good about it that I'm clearly not getting the whole picture. I'm considering spending more time to learn it, and I've heard more than I need about its virtues (to the point where I've started recommending it having never really used it), so I want to know its drawbacks, flaws, issues, and every single minor point of irritation you've ever had (preferably with explanations readable to one who doesn't program Python, such as with an example in another language).</p>
<p>Convince me <em>not</em> to try it out.</p>
http://stackoverflow.com/questions/1488775/c-remove-new-line-from-multiline-string/1488799#14887993Answer by coppro for C++ Remove new line from multiline string coppro2009-09-28T19:06:37Z2009-09-28T19:06:37Z<p>You should use the <a href="http://stackoverflow.com/questions/799314/difference-between-erase-and-remove">erase-remove idiom</a>, looking for <code>'\n'</code>. This will work for any standard sequence container; not just <code>string</code>.</p>
http://stackoverflow.com/questions/1462829/what-is-the-most-elegant-and-efficient-way-to-model-a-game-object-hierarchy-des/1462884#14628844Answer by coppro for What is the most elegant and efficient way to model a game object hierarchy? (design bothers)coppro2009-09-22T22:07:45Z2009-09-23T23:20:45Z<p>This is probably the biggest issue I encounter when designing similar programs. The approach I've settled on is to realize that an object really does not care about where it is in absolute terms. All it cares about is what is around it. As a result, the <code>World</code> object (and I prefer the object approach to a singleton for many good reasons which you can search for on the Internet) maintains where all the objects are, and they can ask the world what objects are nearby, where other objects are in relation to it, etc. <code>World</code> should not care about the content of <code>Object</code>; it will hold pretty much anything, and the <code>Object</code>s themselves will define how they interact with each other. Events are also a great way to handle objects interacting, as they provide a means for <code>World</code> to inform an <code>Object</code> of what's going on without caring what an <code>Object</code> is.</p>
<p>Hiding information from an <code>Object</code> about <em>all</em> objects is a good idea, and should not be confused with hiding information about <em>any</em> <code>Object</code>. Think in terms of people - it's reasonable for you to know and retain information about many different people, though you can only find that information out by encountering them or having someone else telling you about them.</p>
<p>EDIT AGAIN:</p>
<p>All right. It's pretty clear to me what you really want, and that is multiple dispatch - the ability to handle a situation polymorphically on types of many parameters to the function call, rather than just one. C++ unfortunately does not support multiple dispatch natively.</p>
<p>There are two options here. You can attempt to reproduce multiple dispatch with double dispatch or the visitor pattern, or you can use <code>dynamic_cast</code>. Which you want to use depends on the circumstances. If you have a lot of different types to use this on, <code>dynamic_cast</code> is probably the better approach. If you have only a few, double dispatch or the visitor pattern is probably more appropriate.</p>
http://stackoverflow.com/questions/350861/what-bad-practice-do-you-do-and-why23What "bad practice" do you do, and why?coppro2008-12-08T20:56:02Z2009-09-23T10:17:00Z
<p>Well, "good practice" and "bad practice" are tossed around a lot these days - "Disable assertions in release builds", "Don't disable assertions in release builds", "Don't use goto.", we've got all sorts of guidelines above and beyond simply making your program work. So I ask of you, what coding practices do you violate all the time, and more importantly, why? Do you disagree with the establishment? Do you just not care? Why should everyone else do the same?</p>
<p><strong>cross links:</strong></p>
<p><a href="http://stackoverflow.com/questions/112920/whats-your-favorite-abandoned-rule">What's your favorite abandoned rule?</a> </p>
<p><a href="http://stackoverflow.com/questions/113283/rule-you-know-you-should-follow-but-dont">Rule you know you should follow but don't</a></p>
http://stackoverflow.com/questions/1463707/c-singleton-vs-global-static-object/1463974#14639740Answer by coppro for C++ singleton vs. global static objectcoppro2009-09-23T04:34:08Z2009-09-23T04:34:08Z<p>In C++, there's not a huge amount of difference between the two in terms of actual usefulness. A global object can of course maintain its own state (possibly with other global variables, though I don't recommend it). If you're going to use a global or a singleton (and there are many reasons not to), the biggest reason to use a singleton over a global object is that with a singleton, you can have dynamic polymorphism by having several classes inheriting from a singleton base class.</p>
http://stackoverflow.com/questions/1462932/is-there-a-restart-function-in-windows-c/1462943#14629432Answer by coppro for Is there a 'restart' function in Windows/C++coppro2009-09-22T22:21:06Z2009-09-22T22:21:06Z<p>There isn't a built-in for this, but a well-designed application can simply stop everything that's going on and then loop back to the start. If you want a true 'fresh start', you will have to spawn a new process (possibly as the last thing you do before the old one shuts down.)</p>
http://stackoverflow.com/questions/1445141/can-threads-be-safely-created-during-static-initialization/1462524#14625240Answer by coppro for Can threads be safely created during static initialization?coppro2009-09-22T20:50:28Z2009-09-22T20:50:28Z<p>As far as I can tell from reading the C++0x/1x draft, starting a thread prior to <code>main()</code> is fine, but still subject to the normal pitfalls of static initialization. A conforming implementation will have to make sure the code to intialize threading executes before any static or thread constructors do.</p>
http://stackoverflow.com/questions/1435004/variable-size-type-declared-outside-of-any-function/1435059#14350593Answer by coppro for variable-size type declared outside of any function coppro2009-09-16T19:42:18Z2009-09-17T17:21:18Z<p>I'm going to step up right now and tell you that multidimensional arrays are not worth the brain effort in C or C++. You're much better off using single-dimensional arrays (or, better yet, standard containers) and writing an indexing function:</p>
<pre><code>inline int index (int x, int y)
{
return x + y * width;
}
</code></pre>
<p>Now for your problem. C++ does not support C99 variable-length arrays. The compiler must know, at compile time, the size of the array. The following, for example, won't work.</p>
<pre><code>int dim = 4;
int ar[dim];
</code></pre>
<p>If <code>dim</code> were <code>const</code>, it would work because the compiler would be able to tell exactly how wide <code>ar</code> should be (because the value of <code>dim</code> wouldn't change). This is probably the problem you're encountering.</p>
<p>If you want to be able to change the size at compile-time, you'll need to do something more difficult, like write a templated reference. You can't use a pointer for multidimensional arrays because of the way they are laid out in C/C++. A templated example might look like the following aberration:</p>
<pre><code>template <int Width, int Height>
void populate(int (&(&random)[Width])[Height], int x, int y);
</code></pre>
<p>This is ugly.</p>
<p>For run-time, you'll need to use <code>new</code> to allocate data, or use a container type.</p>
http://stackoverflow.com/questions/1434937/namespace-functions-versus-static-methods-on-a-class/1435016#14350162Answer by coppro for Namespace + functions versus static methods on a classcoppro2009-09-16T19:32:03Z2009-09-16T19:32:03Z<p>You should use a namespace, because a namespace has the many advantages over a class:</p>
<ul>
<li>You don't have to define everything in the same header</li>
<li>You don't need to expose all your implementation in the header</li>
<li>You can't <code>using</code> a class member; you can <code>using</code> a namespace member</li>
<li>You can't <code>using class</code>, though <code>using namespace</code> is not all that often a good idea</li>
<li>Using a class implies that there is some object to be created when there really is none</li>
</ul>
<p>Static members are, in my opinion, very very overused. They aren't a real necessity in most cases. Static members functions are probably better off as file-scope functions, and static data members are just global objects with a better, undeserved reputation.</p>
http://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio/1808589#1808589Comment by coppro on Using an external tool for C# builds in Visual Studiocoppro2009-11-27T19:16:25Z2009-11-27T19:16:25ZI'm confused. How do I redefine it to make it do something different?http://stackoverflow.com/questions/1792380/how-i-can-use-mysql-in-c/1792441#1792441Comment by coppro on How I can use mysql in C++?coppro2009-11-24T20:51:42Z2009-11-24T20:51:42ZIt's probably not the root problem, but using Dev C++ is a pretty bad idea. It's really out of date and not entirely a great program. There are better free IDEs (Eclipse, Code::Blocks) out there.http://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio/1789566#1789566Comment by coppro on Using an external tool for C# builds in Visual Studiocoppro2009-11-24T20:13:36Z2009-11-24T20:13:36ZAh, very neat info, and close to what I'm looking for, but not quite it - I'm not really trying to replace the compiler; rather to tell MSVC not to use it (if that makes sense)http://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio/1764769#1764769Comment by coppro on Using an external tool for C# builds in Visual Studiocoppro2009-11-20T20:54:41Z2009-11-20T20:54:41ZI am not looking for a way to compile outside the IDE at all. I'm trying to click the 'compile' button inside the IDE and have it invoke Scons. I can do this for C++ using a Makefile project. The build works fine with Scons now, I am just looking for IDE integration.http://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio/1764762#1764762Comment by coppro on Using an external tool for C# builds in Visual Studiocoppro2009-11-19T17:07:22Z2009-11-19T17:07:22ZThis wouldn't integrate well with other systems, like the debugger.http://stackoverflow.com/questions/1744407/cache-line-alignment-need-clarification-on-article/1744793#1744793Comment by coppro on Cache Line Alignment (Need clarification on article)coppro2009-11-18T19:59:04Z2009-11-18T19:59:04Z@Bahbar: yes, I did mean bytes. I looked it up and you're right about that - there was some discussion of allowing alignment requirements where each alignment wasn't necessarily a multiple of the previous one. I guess they decided to fix it by adding that paragraph, rather than to adjust the definition to allow odd alignments like 3 and 6 (which is what I thought they did). Thanks! http://stackoverflow.com/questions/1752063/simulate-c-function-template-instantiation-with-implicit-conversion/1752423#1752423Comment by coppro on simulate C++ function template instantiation with implicit conversioncoppro2009-11-18T00:30:52Z2009-11-18T00:30:52Z@Victor Liu: No, the template parameter lists are correct. That's a template template parameter, which is a template parameter that is another uninstantiated template. I suppose I wasn't clear after I changed my example around to put the machinery into Adapter; I'll fix that up. Also, I already fixed the non-const reference issue, that was an oversight.http://stackoverflow.com/questions/1752063/simulate-c-function-template-instantiation-with-implicit-conversion/1752433#1752433Comment by coppro on simulate C++ function template instantiation with implicit conversioncoppro2009-11-17T22:53:41Z2009-11-17T22:53:41ZThis solution doesn't scale. Imagine if there were 15 base classes; Adapter would be difficult to maintain and a waste of space (as it would store 14 unused pointers)http://stackoverflow.com/questions/1751869/multiply-a-constant-to-a-complex-operator-overloading-problems/1752192#1752192Comment by coppro on Multiply a constant to a complex & operator overloading problemscoppro2009-11-17T22:14:07Z2009-11-17T22:14:07ZYour post is excellent, but I'd suggest using a single <code>operator *</code> outside the class for multiplying two <code>Complex</code> values, and let implicit conversion take care of the case where there's a <code>double</code> on one side.http://stackoverflow.com/questions/1752063/simulate-c-function-template-instantiation-with-implicit-conversionComment by coppro on simulate C++ function template instantiation with implicit conversioncoppro2009-11-17T22:04:20Z2009-11-17T22:04:20ZI'm a bit confused. In your actual implementation, how do you figure 2^N functions? It would be more helpful if you could elaborate an example that shows where you are having exponential functionshttp://stackoverflow.com/questions/1751671/boostformat-attempting-to-use-html-as-formatter-string-need-some-helpComment by coppro on boost::format - attempting to use HTML as formatter string - need some helpcoppro2009-11-17T21:10:13Z2009-11-17T21:10:13ZHow are you passing that string into Boost.Format? Is it a literal? If so, you have " characters inside, and they will cause errors. If you're reading from a file, are you sure you're reading the entire file and not delimiting by whitespace or newlines?http://stackoverflow.com/questions/1751671/boostformat-attempting-to-use-html-as-formatter-string-need-some-help/1751702#1751702Comment by coppro on boost::format - attempting to use HTML as formatter string - need some helpcoppro2009-11-17T21:09:11Z2009-11-17T21:09:11ZYes, because 100%% isn't a valid value. When it goes through Boost.Format, however, it will become valid as it replaces the double %.http://stackoverflow.com/questions/1746352/how-to-have-templated-function-overloads-accept-derived-classes-from-different-ba/1746417#1746417Comment by coppro on How to have templated function overloads accept derived classes from different base classes?coppro2009-11-17T03:40:15Z2009-11-17T03:40:15ZAn addendum - what enable_if does is it only has a <code>type</code> member if the condition is true, so it causes a compile error if you try to use <code>type</code> and the condition is false. However, because of a principle known as SFINAE (substitution failure is not an error), that just tells the compiler not to pick that version of the template. If you have another one for <code>BaseY</code>, the compiler will fail to create one of the two templates, and be forced to use the other. Since it will be the only eligible template, it will be selected.http://stackoverflow.com/questions/1744407/cache-line-alignment-need-clarification-on-article/1744793#1744793Comment by coppro on Cache Line Alignment (Need clarification on article)coppro2009-11-17T00:43:15Z2009-11-17T00:43:15Z@splicer, @Bahbar: Specifying two alignments causes the loosest alignment that is satisfied by both to be used (e.g. a [[align(2), align(3)]] would be aligned to 6 bits if you had a platform that could support a non-power-of-2 alignment, which can in theory exist. The standard allows for any alignment conceivable.http://stackoverflow.com/questions/1744194/visualizing-c-to-help-understanding-it/1744237#1744237Comment by coppro on Visualizing C++ to help understanding itcoppro2009-11-16T20:32:38Z2009-11-16T20:32:38ZDoxygen actually has very impressive visualization tools. It can generate comprehesive call graphs, caller graphs, inheritance graphs, and has one of the most complete C++ parsers available (it's actually better than MSVC's!)