mina wrote: > I have some problem about vector!what is concat of two vector?how is > implementation of this in C++? > and how is implementation of overloading operator + for vector in c++? > TNX friends!
1) Depends on what you want to accomplish. 2) Operator overloading. I recommend += as the operator of choice instead of +. 3) http://www.parashift.com/c++-faq-lite/operator-overloading.html http://www.google.com/search?q=operator+binary+overload+c%2B%2B -- Thomas Hruska CubicleSoft President Ph: 517-803-4197 *NEW* MyTaskFocus 1.1 Get on task. Stay on task. http://www.CubicleSoft.com/MyTaskFocus/
