istrstream的使用

//===========================================================
//the use of istrstream
//===========================================================
/*
     istrstream 类是从 istream 类派生的,它是用来将文本项转换为变量所需要的内部格式。

     istrstream 类的构造函数有两个:
     istrstream::istrstream(char *s);
     istrstream::istrstream(char *s,int n);

     参数说明:
        ⒈第一个参数 s 是一个字符指针或字符数组,使用该串来初始化要创建的流对象。
        ⒉ n 表示使用前 n 个字符来构造流对象。
*/

举例
//===========================================================
#include <strstream>
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
//-----------------------------------------------------------
#define max_string_length 1024
void main()
{
string str;
char buffer[max_string_length];
ifstream in("in.txt");                                      //文件中内容为(1,1)(0,0)
while (getline(in,str))
{
   for (int i = 0; i <= str.size(); ++i)
   {
    if (str[i] == '(' || str[i] == ')' || str[i] == ',')     //将非数字的符号变为空格,因为istrstream流以空格为分割符
    {
     buffer[i] = ' ';
    }
    else
    buffer[i] = str[i];
   }
   buffer[i+1] = '\0';
   istrstream inp(buffer);                                //将buffer中的字符读入double型变量
   double x1,y1,x2,y2;
   inp >> x1 >> y1 >> x2 >> y2;
   cout << x1 << endl;
   cout << y1 << endl;
   cout << x2 << endl;
   cout << y2 << endl;
   cout << buffer << endl;
}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值