C++ Interfaces in stl::list - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T21:04:46Z http://stackoverflow.com/feeds/question/1601457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist 2 C++ Interfaces in stl::list jack london http://stackoverflow.com/users/129428 2009-10-21T15:05:35Z 2009-10-21T15:40:18Z <p>LessonInterface</p> <pre><code>class ILesson { public: virtual void PrintLessonName() = 0; virtual ~ILesson() {} }; </code></pre> <p>stl container</p> <pre><code>typedef list&lt;ILesson&gt; TLessonList; </code></pre> <p>calling code</p> <pre><code>for (TLessonList::const_iterator i = lessons.begin(); i != lessons.end(); i++) { i-&gt;PrintLessonName(); } </code></pre> <p>The error:</p> <blockquote> <p>Description Resource Path Location Type passing ‘const ILesson’ as ‘this’ argument of ‘virtual void ILesson::PrintLessonName()’ discards qualifiers</p> </blockquote> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601486#1601486 6 Answer by AraK for C++ Interfaces in stl::list AraK http://stackoverflow.com/users/127893 2009-10-21T15:08:53Z 2009-10-21T15:31:56Z <p>You can't "put" objects of a class that has pure virtual functions(because you can't instantiate it). Maybe you mean:</p> <pre><code>// store a pointer which points to a child actually. typedef list&lt;ILesson*&gt; TLessonList; </code></pre> <p><hr /></p> <p>OK, as others pointed out, you have to make <code>PrintLessonName</code> a <code>const</code> member function. I would add that there is another small pitfall here. <code>PrintLessonName</code> must be <code>const</code> in both the <code>base</code> and the <code>derived</code> classes, otherwise they will <strong>not</strong> have the same signature:</p> <pre><code>class ILesson { public: virtual void PrintLessonName() const = 0; virtual ~ILesson() {} }; class SomeLesson : public ILesson { public: // const is mandatory in the child virtual void PrintLessonName() const { // } virtual ~SomeLesson() {} }; </code></pre> <p>To be honest, I find <a href="http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601534#1601534">Jerry Coffin's</a> answer helpful for redesigning the printing functionality.</p> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601489#1601489 1 Answer by Cătălin Pitiș for C++ Interfaces in stl::list Cătălin Pitiș http://stackoverflow.com/users/83153 2009-10-21T15:08:59Z 2009-10-21T15:08:59Z <p><strong>You call a non-const method for a const object refered through a reference to const object.</strong></p> <p>Anyways:</p> <p>I'm 100% sure you need to have a list of pointers:</p> <pre><code>typedef list&lt;ILesson*&gt; TLessonList; </code></pre> <p>in order to take advantage of polymorphism.</p> <p>Having a list of values of ILesson is not possible, since ILesson is an abstract class.</p> <p>Don't forget to delete the objects in the list of pointers, to avoid memory leaks.</p> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601490#1601490 3 Answer by Shay Erlichmen for C++ Interfaces in stl::list Shay Erlichmen http://stackoverflow.com/users/48387 2009-10-21T15:09:11Z 2009-10-21T15:34:50Z <p>Use <code>iterator</code> instead of <code>const_iterator</code> or make <code>PrintLessonName()</code> const function:</p> <pre><code>virtual void PrintLessonName() const = 0 </code></pre> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601493#1601493 10 Answer by John Kugelman for C++ Interfaces in stl::list John Kugelman http://stackoverflow.com/users/68587 2009-10-21T15:09:36Z 2009-10-21T15:09:36Z <p>PrintLessonName must be declared as const to be able to be called on const ILessons. Otherwise the compiler assumes it may modify the ILesson and prevents the call.</p> <pre><code>virtual void PrintLessonName() const = 0; </code></pre> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601502#1601502 3 Answer by yeyeyerman for C++ Interfaces in stl::list yeyeyerman http://stackoverflow.com/users/110466 2009-10-21T15:10:44Z 2009-10-21T15:10:44Z <p>You have to make PrinLessonName const.</p> <pre><code>virtual void PrintLessonName() const = 0; </code></pre> <p>Or not use a const_iterator, of course.</p> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601534#1601534 3 Answer by Jerry Coffin for C++ Interfaces in stl::list Jerry Coffin http://stackoverflow.com/users/179910 2009-10-21T15:15:53Z 2009-10-21T15:15:53Z <p>You want a list of pointers to ILesson's.</p> <p>IMO, you'd also be considerably better off adding something like:</p> <pre><code>std::ostream &amp;operator&lt;&lt;(std::ostream &amp;os, ILesson const *il) { il-&gt;PrintLessonName(os); return os; } </code></pre> <p>Then, instead of the loop you've written above, you can use something like:</p> <pre><code>std::copy(lessons.begin(), lessons.end(), std::ostream_iterator&lt;ILesson *&gt;(std::cout)); </code></pre> <p>As you can see, I've added one other minor embellishment in the process -- PrintLessonName takes a stream as its argument, instead of always printing to the same place. Of course, if you're not using streams, you may not want that...</p> <p>Edit: Of course the other comments that you want to make PrintLessonPlan const are also correct...</p> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601588#1601588 0 Answer by Charles Beattie for C++ Interfaces in stl::list Charles Beattie http://stackoverflow.com/users/97554 2009-10-21T15:21:38Z 2009-10-21T15:36:41Z <p>People are correct about the lack of const. I'd favour using the for_each algorithm this will prevent calling lessons.end() for every entry.</p> <pre><code>#include &lt;algorithm&gt; //for for_each() </code></pre> <p>Then use this:</p> <pre><code>std::for_each( lessons.begin(), lessons.end(), std::mem_fun(&amp;ILesson::PrintLessonName) ) </code></pre> http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601703#1601703 1 Answer by riviera for C++ Interfaces in stl::list riviera http://stackoverflow.com/users/193907 2009-10-21T15:40:18Z 2009-10-21T15:40:18Z <p>A version like this:</p> <pre><code>for (TLessonList::const_iterator i=lessons.begin(), m=lessons.end(); i!=m; ++i) { i-&gt;PrintLessonName(); } </code></pre> <p>lessons.end() gets called once, and also note ++i instead of i++, which is faster (the post-increment operator involves creation of a temporary object, while the pre-increment doesn't).</p>