C++ string 字符分割

#include 
#include 
#include 
#include 
using namespace std;
int main()
{
   string params="10.00,1.00,1";
   vector pa;
   char parm[20];
   strcpy(parm,params.c_str());
   const char *sep=",";
   char *p=strtok(parm,sep);
   while(p)
   {
     pa.push_back(p);
     p=strtok(NULL,sep);
   }
   for(int i=0;i

 

你可能感兴趣的:(C++基础,c++)