Haskell语言IO模块中函数hSeek的用法及代码示例。
用法类型:
Handle -> SeekMode -> Integer -> IO ()
计算方式hSeekhdl模式我根据模式设置手柄hdl的位置。如果模式为:
* AbsoluteSeek: the position of hdl is set to i. * RelativeSeek: the position of hdl is set to offset i from the current position. * SeekFromEnd: the position of hdl is set to offset i from the end of the file.
偏移量以8位字节的形式给出。
错误报告:如果超出系统资源限制,则hSeek计算可能会失败,并显示:isPermissionError。
示例1:
文件:/tmp/foo.txt
:
Hello, world!
Good bye!
源码:
import IO
main = do hdl <- openFile "/tmp/foo.txt" ReadMode
a <- hGetChar hdl
hSeek hdl AbsoluteSeek 4
b <- hGetChar hdl
print (a,b)
c <- hGetChar hdl
hSeek hdl RelativeSeek 3
d <- hGetChar hdl
print (c,d)
e <- hGetChar hdl
hSeek hdl SeekFromEnd (-3)
f <- hGetChar hdl
print (e,f)
输出:
('H','o')
输出:
(',','r')
输出:
('l','y')
注:本文由纯净天空筛选整理自 haskell hSeek。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。