Re: Error in function not detected when not called
{ Please limit your quoting to the minimum needed to establish context
- mod }
On 08/30/2012 12:44 AM, kiran wrote:
Hi have a following class:
====================================
template <class T>
class List
{
protected:
ListNode<T> *first;
public:
...
int remove(T& t);
...
};
//The member function is defined as:
template <class T>
int List<T>::remove(T& t)
{
if(isEmpty()) return 0;
ListNode<T> q = first;
first = first->next;
t = q->data;
delete q;
return 1;
}
====================================
The member function incorrectly assigns a ListNode object q to the
ListNode pointer first. However when I compile it (using g++ on
redhat) I dont get any error if I don't call the function. However,
if I do call the function somewhere in the program I get the error.
I have tried to compile using various optimization levels (O0, O1,
O2, O3) and yet compiler doesn't give error. Anyone knows why?
Many thanks,
Kiran
methods of template classes are instantiated upon usage. when it is
not called, only basic syntax is checked. it is so because w/o exact
type compiler is not able to determine if given code is correct.
imagine that ListNode<T> could have specialization for some type, that
would have required c-tor defined - could would be correct then.
this is actually a nice feature. common example is std::map<>, that
has operator[] defined. but you need to have a default c-tor for the
element, in order to be able to use it. if element does not have
default c-tor, you can always call insert() and as long as you won't
try using operator[], everything is fine.
--
pozdrawiam serdecznie / best regards,
bartek szurgot
/* http://www.baszerr.eu */
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]