Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Yeah, I totally agree on that point. With C++, it's not entirely uncommon to write lines like the following:

    std::vector<std::string> exampleparser::tokenize(std::string some_input){
That is unless I'm doing it wrong.


You forgot to explicitly specify the allocator in the vector...... - it'll default to std::allocator and put items on the heap but you could potentially use your own and get it to put stuff on disk instead!

I don't find your example that convoluted to read to be honest.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: