51Testing软件测试论坛

标题: 请教高手! [打印本页]

作者: shorelew@    时间: 2005-5-24 17:14
标题: 请教高手!
# Write the words dos_system demo to the file c:\demo.tmp.
dos_system("echo dos_system demo > c:\\demo.tmp");
# Read file line by line.
while(getline line < "c:\\demo.tmp");
# Type contents into a Pause message.
pause(line);
# Close file.
close("c:\\demo.tmp");
# Delete file.
dos_system("del c:\\demo.tmp");

上面getline line < "c:\\demo.tmp"是什么意思啊
作者: kper5    时间: 2005-5-24 17:48
我没有使用过 getline ,但是上面首先:
echo dos_system demo >c:\demo.tmp

是将 dos_system demo 字符串发送到 demo.tmp 文件里,并更新这个文件,要是 >> 就是加在尾部

getline 一定是读取一行的字符吧,你可以试验一下啊,  line < c:\\demo.tmp 和上面一样,有文件中的内容复制给它,具体是全部,还是一行,我不知道了。。

这些就是利用管道方法




欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/) Powered by Discuz! X3.2