gpt4 book ai didi

networking - TCP 在 GHCi 中工作,在使用 Leksah 编译的程序中缓冲直到程序退出

转载 作者:可可西里 更新时间:2023-11-01 02:33:02 24 4
gpt4 key购买 nike

我编写了这个简单的原型(prototype)客户端来向我正在开发的服务器发送命令。它在 GHCi 中运行完美,但编译版本会缓冲输入的所有内容,直到我输入“退出”并退出程序。那时所有的输入文本都被发送了。

我做错了什么?为什么编译时会有所不同?

更新:如果使用 ghc Main.hs 编译,它会按预期工作。使用 Leksah 编译时会出现问题通过包 ->构建。有人知道如何获取 Leksah 使用的命令行吗?

系统信息:OSX 10.6、GHC 7.0.3、网络 2.3.0.2

module Main (
main
) where

import System.IO
import Network

main = do
hServer <- connectTo "localhost" (PortNumber 7000)
hSetBuffering hServer NoBuffering
loop hServer
hClose hServer
where loop :: Handle -> IO ()
loop hServer = do
s <- getLine
hPutStrLn hServer s
case s of "quit" -> return ()
otherwise -> loop hServer

最佳答案

Leksah 使用“cabal build”,旧版本使用“runhaskell Setup build”。

关于networking - TCP 在 GHCi 中工作,在使用 Leksah 编译的程序中缓冲直到程序退出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5890054/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com