| | |
Using New
Please support our C++ advertiser: Intel Parallel Studio Home
![]() |
Just been looking over Dynamic Memory Allocation, using new.
Heres a snippet of the code i've got.
what i was thinking was could i just do
instead of the for loop, are there any benefits for using either or are they exactly the same.
thanks in advance
finally one other minor question, currently all of my classes are in the same .cpp file as my main function, is there a way to put the classes into seperate .cpp files rather like java. i tried this initially but got errors about my code, and after moving them into the same file the program ran perfectly.
- Matt
Heres a snippet of the code i've got.
c++ Syntax (Toggle Plain Text)
vertices = new float *[v]; for (i = 0; i < v; ++i) { vertices[i] = new float[3]; }
what i was thinking was could i just do
c++ Syntax (Toggle Plain Text)
vertices = new float[v][3];
instead of the for loop, are there any benefits for using either or are they exactly the same.
thanks in advance

finally one other minor question, currently all of my classes are in the same .cpp file as my main function, is there a way to put the classes into seperate .cpp files rather like java. i tried this initially but got errors about my code, and after moving them into the same file the program ran perfectly.
- Matt
Last edited by midimatt; May 15th, 2008 at 2:00 am.
•
•
Join Date: Nov 2006
Posts: 224
Reputation:
Solved Threads: 31
•
•
•
•
what i was thinking was could i just do
c++ Syntax (Toggle Plain Text)
vertices = new float[v][3];
![]() |
Other Threads in the C++ Forum
- Previous Thread: Threads!
- Next Thread: stack of stack....
| Thread Tools | Search this Thread |
api array arrays based beginner binary bitmap c++ c/c++ calculator char class classes code compile compiler console conversion count data delete deploy desktop developer directshow dll download dynamic encryption error file forms fstream function functions game getline givemetehcodez google graph gui homeworkhelp homeworkhelper iamthwee ifstream input int integer java lib linkedlist linker linux list loop looping loops map math matrix memory news node number output parameter pointer problem program programming project proxy python read recursion recursive return string strings struct temperature template templates test text text-file tree unix url variable vector video visual visualstudio win32 windows winsock word wordfrequency wxwidgets






