How much of C++ is supported in Objective-C++ - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T05:15:37Zhttp://stackoverflow.com/feeds/question/740989http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c3How much of C++ is supported in Objective-C++rlbond2009-04-11T23:40:02Z2009-10-16T21:26:24Z
<p>I want to make an iPhone app, but I am planning to make the framework in C++. Is it possible to use things like templates in Objective-C++. I guess really the question is, can I use boost?</p>
http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c/740992#7409929Answer by Zifre for How much of C++ is supported in Objective-C++Zifre2009-04-11T23:42:54Z2009-04-11T23:42:54Z<p>All of C++ is supported in Objective C++. It should be possible to use boost, but you might have to port some of the platform dependant things.</p>
http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c/742414#7424143Answer by Jason for How much of C++ is supported in Objective-C++Jason2009-04-12T20:55:00Z2009-04-12T20:55:00Z<p>Objective C++ is a superset of C++. Everything that you can do in C/C++ can be done in Obj-C++. The "Objective" portion contains, among other things, a Smalltalk-esque messaging system and other additions to C++.</p>
http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c/767118#7671183Answer by Caleb Vear for How much of C++ is supported in Objective-C++Caleb Vear2009-04-20T06:22:47Z2009-04-20T06:22:47Z<p>It should be pointed out that you can't just do everything that you can do in C++ in Objective-C++. For example you can't call virtual functions on C++ objects from an Objective-C class. Once you call into a C/C++ function you can do whatever you want though.</p>
http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c/1503811#15038110Answer by j.ingham06 for How much of C++ is supported in Objective-C++j.ingham062009-10-01T12:58:29Z2009-10-01T12:58:29Z<p>C++ objects in Objective C will NOT necessarily act like in C++. For example constructors and destructors are not automatically called and (i think) that you can't implement virtual methods...</p>
http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c/1508471#15084710Answer by gavinb for How much of C++ is supported in Objective-C++gavinb2009-10-02T09:08:09Z2009-10-02T09:08:09Z<blockquote>
<p>Is it possible to use things like templates in Objective-C++.</p>
</blockquote>
<p>Yes, but you need to take care how you mix types and interfaces between the pure C++ layers and the Objective-C++ code. Keep in mind the boundaries between layers, where you would need to convert types such as <code>std::string</code> to <code>NSString</code>, and so on.</p>
<p>For example, you could implement the core game engine in pure C++, and just implement your controllers and GUI code in Objective-C++. Then the Obj-C++ code is the glue between the pure C++ engine and Cocoa.</p>
<blockquote>
<p>I guess really the question is, can I use boost?</p>
</blockquote>
<p>Given the iPhone OS is a subset of OS X that still provides a full POSIX layer, most Boost libraries <em>should</em> work just fine. It should be just like writing Darwin code.</p>
<p>There are a number of limitations in Objective-C++ to be aware of (taken directly from the <a href="http://developer.apple.com/mac/library/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ocCPlusPlus.html#//apple%5Fref/doc/uid/TP30001163-CH10-SW1" rel="nofollow">Objective-C 2.0 Reference Guide</a>):</p>
<ul>
<li>you cannot use Objective-C syntax to call a C++ object</li>
<li>you cannot add constructors or destructors to an Objective-C object</li>
<li>you cannot use the keywords this and self interchangeably</li>
<li>the class hierarchies are separate; a C++ class cannot inherit from an Objective-C class, and an Objective-C class cannot inherit from a C++ class</li>
<li>an exception thrown in Objective-C code cannot be caught in C++ code and, conversely, an exception thrown in C++ code cannot be caught in Objective-C code.</li>
</ul>
http://stackoverflow.com/questions/740989/how-much-of-c-is-supported-in-objective-c/1580517#15805170Answer by Brock Woolf for How much of C++ is supported in Objective-C++Brock Woolf2009-10-16T21:26:24Z2009-10-16T21:26:24Z<p>Boost is useful but it is also a large overhead to add to a project.</p>
<p>Make sure you really need it before you go adding it. </p>
<p>For Regex support: <a href="http://regexkit.sourceforge.net/" rel="nofollow">RegexLite</a>. </p>
<p>For everything else: <strong>Cocoa</strong>.</p>