我使用下OS X的gcc,並試圖包括向量執行時,我得到一個錯誤不能包含<vector>
fatal error: 'vector' file not found
。其他包括如
#include <stdio.h>
#include <stdlib.h>
正在工作。矢量文件位於何處?
我使用下OS X的gcc,並試圖包括向量執行時,我得到一個錯誤不能包含<vector>
fatal error: 'vector' file not found
。其他包括如
#include <stdio.h>
#include <stdlib.h>
正在工作。矢量文件位於何處?
的vector
C++頭使得能夠使用向量模板類的編譯。
包括:
#include<vector>
和使用G ++編譯程序。
您是否正在編寫C或C++? 'stdio.h'和'stdlib.h'是C包含,而'vector'是C++。 –
您是否嘗試過使用'g ++'而不是'gcc'? – WhozCraig
你不能在c中使用vector。 – denis