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


haskell hPutChar用法及代码示例


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

用法类型:

Handle -> Char -> IO ()

hPutCharhdl c将字符c写入由hdl管理的文件或通道。如果为hdl启用了缓冲,则可以缓冲字符。

示例1:

源码:

import IO
import Char

main =  do hdl <- openFile  "/tmp/foo.txt" WriteMode
	   hPutChar hdl (chr 66)
	   hPutChar hdl ("ABCD" !! 0)
	   hClose hdl
	   hdl <- openFile  "/tmp/foo.txt" ReadMode
	   x <- hGetContents hdl
	   putStr x

输出:
BA
         

相关用法


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