07.03.2013 Views

here - Chara - University of Illinois at Urbana-Champaign

here - Chara - University of Illinois at Urbana-Champaign

here - Chara - University of Illinois at Urbana-Champaign

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

Lecture<br />

04—Templ<strong>at</strong>e<br />

P<strong>at</strong>terns I<br />

Chase Geigle<br />

Announcements<br />

Templ<strong>at</strong>e<br />

Specializ<strong>at</strong>ion<br />

Partial<br />

Templ<strong>at</strong>e<br />

Specializ<strong>at</strong>ion<br />

Templ<strong>at</strong>e<br />

Templ<strong>at</strong>e<br />

Parameters<br />

Next Time<br />

Modified Implement<strong>at</strong>ion<br />

templ<strong>at</strong>e <br />

class vector {<br />

public:<br />

~vector() {<br />

for( size_t i = 0; i < size_; ++i )<br />

delete ptr;<br />

delete [] d<strong>at</strong>a_;<br />

}<br />

// other things<br />

priv<strong>at</strong>e:<br />

T ** d<strong>at</strong>a_;<br />

};<br />

int main() {<br />

vector a;<br />

a.push_back( new int(5) );<br />

// no more memory leak!<br />

}

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!