我想把CString 转成float 怎么转呢?
如:
CString price="33.30";
我想让这个‘33.30’转成数值型进行计算。
对不起 ,刚才想了一想, 字符数组中存的“33.30”转成float 类型 , 应该怎么作呢, 请大家帮忙
#include "malloc.h" class input {CFile F1; public :
int seek(CString temp); void write(CString h,CString i,CString j); void write(CString varsal); input() { F1.Open( "c:\\j.txt",CFile::modeNoTruncate|CFile::modeReadWrite); }
}; int input:: seek(CString temp) { int flag=1; int len=F1.SeekToEnd(); char *buffer=(char *)malloc(len); F1.SeekToBegin();
F1.Read(buffer,len); unsigned count=0; while(count<=F1.SeekToEnd()) { while(true) { if(buffer[count]=='|')break;
count++;
}
char buffer1[8]; //我想把得到的这个buffer1字符数给中得到的字符(假设是’333.0000‘)转成数值型 , 怎么作呢? for(int x=0;x<=6;x++,count++) {buffer1[x]=buffer[count+1];} buffer1[7]='\0'; if ((CString)buffer1==temp) {//MessageBox("false"); //为什么messageBox在些处不可用? flag=0; F1.Close(); break;} } return flag;} void input:: write(CString h,CString i,CString j) {F1.SeekToEnd(); F1.Write("|",1); F1.Write(j,j.GetLength()); F1.Write("$",1); F1.Write(h,h.GetLength()); F1.Write("%",1); F1.Write(i,i.GetLength());
F1.Close(); }