C++ Interfaces in stl::list - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T21:04:46Zhttp://stackoverflow.com/feeds/question/1601457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1601457/c-interfaces-in-stllist2C++ Interfaces in stl::listjack londonhttp://stackoverflow.com/users/1294282009-10-21T15:05:35Z2009-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<ILesson> TLessonList;
</code></pre>
<p>calling code</p>
<pre><code>for (TLessonList::const_iterator i = lessons.begin(); i != lessons.end(); i++)
{
i->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#16014866Answer by AraK for C++ Interfaces in stl::listAraKhttp://stackoverflow.com/users/1278932009-10-21T15:08:53Z2009-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<ILesson*> 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#16014891Answer by Cătălin Pitiș for C++ Interfaces in stl::listCătălin Pitișhttp://stackoverflow.com/users/831532009-10-21T15:08:59Z2009-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<ILesson*> 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#16014903Answer by Shay Erlichmen for C++ Interfaces in stl::listShay Erlichmenhttp://stackoverflow.com/users/483872009-10-21T15:09:11Z2009-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#160149310Answer by John Kugelman for C++ Interfaces in stl::listJohn Kugelmanhttp://stackoverflow.com/users/685872009-10-21T15:09:36Z2009-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#16015023Answer by yeyeyerman for C++ Interfaces in stl::listyeyeyermanhttp://stackoverflow.com/users/1104662009-10-21T15:10:44Z2009-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#16015343Answer by Jerry Coffin for C++ Interfaces in stl::listJerry Coffinhttp://stackoverflow.com/users/1799102009-10-21T15:15:53Z2009-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 &operator<<(std::ostream &os, ILesson const *il) {
il->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<ILesson *>(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#16015880Answer by Charles Beattie for C++ Interfaces in stl::listCharles Beattiehttp://stackoverflow.com/users/975542009-10-21T15:21:38Z2009-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 <algorithm> //for for_each()
</code></pre>
<p>Then use this:</p>
<pre><code>std::for_each( lessons.begin(), lessons.end(), std::mem_fun(&ILesson::PrintLessonName) )
</code></pre>
http://stackoverflow.com/questions/1601457/c-interfaces-in-stllist/1601703#16017031Answer by riviera for C++ Interfaces in stl::listrivierahttp://stackoverflow.com/users/1939072009-10-21T15:40:18Z2009-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->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>