shorelew@ 发表于 2005-5-24 17:14:03

请教高手!

# 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:28

我没有使用过 getline ,但是上面首先:
echo dos_system demo >c:\demo.tmp

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

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

这些就是利用管道方法
页: [1]
查看完整版本: 请教高手!