CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Paul McKenzie

Search: Search took 2.65 seconds.

  1. Replies
    14
    Views
    31,161

    Re: C++ vector length error at run time

    That is much better. Now you are told exactly what you were doing wrong before, and probably the reason why you were crashing from the beginning.

    When you were using new[]/delete[] and...
  2. Replies
    14
    Views
    31,161

    Re: C++ vector length error at run time

    There is no such thing as an error saying a vector is "too long". If anything, the vector is too small, and you're attempting to index an invalid entry.
    Understand the difference between resize()...
  3. Replies
    14
    Views
    31,161

    Re: C++ vector length error at run time

    First thing you should know is that successful compilation means nothing when it comes to actually running the program. A successful compilation means the program is syntactically correct,. i.e. the...
Results 1 to 3 of 3





Click Here to Expand Forum to Full Width

Featured