hello..
is there a way of storing data to other class object.
here's the problem.
class Repository is where it reads through the sentences and tokenize it
into words . and what i did is by using strtok i keep all the tokenize words into a vector.and planning to store this vector of word into class Word object.
im not sure whether this is a good idea because it seems hard to store a list of vector into an object of different class.
any help would be great! thanks!
is there a way of storing data to other class object.
here's the problem.
class Repository is where it reads through the sentences and tokenize it
into words . and what i did is by using strtok i keep all the tokenize words into a vector.and planning to store this vector of word into class Word object.
im not sure whether this is a good idea because it seems hard to store a list of vector into an object of different class.
any help would be great! thanks!
Comment