当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


haskell hClose用法及代码示例


Haskell语言IO模块中函数hClose的用法及代码示例。

用法类型:

Handle -> IO ()

hClosehdl使句柄hdl关闭。在计算完成之前,如果hdl是可写的,则其缓冲区将按以下方式刷新hFlush。如果该操作由于任何原因而失败,则该句柄上的任何其他操作仍将失败,就像hdl已成功关闭一样。

示例1:

源码:

import IO

main = do hdl <- openFile "/tmp/foo.txt" WriteMode
	  hPutStr hdl "Hello, world!"
	  hClose hdl
	  hdl <- openFile "/tmp/foo.txt" ReadMode
	  x <- hGetContents hdl
	  putStr x
	  hClose hdl
输出:
Hello, world!
         

注:本文由纯净天空筛选整理自 haskell hClose。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。