[日常] Go語言聖經--Channel習題

來源:互聯網
上載者:User

標籤:host   sed   loser   goroutine   port   string   標準   read   stc   

練習 8.3: 在netcat3例子中,conn雖然是一個interface類型的值,但是其底層真實類型是*net.TCPConn,代表一個TCP串連。一個TCP串連有讀和寫兩個部分,可以使用CloseRead和CloseWrite方法分別關閉它們。修改netcat3的主goroutine代碼,只關閉網路連接中寫的部分,這樣的話後台goroutine可以在標準輸入被關閉後繼續列印從reverb1伺服器傳回的資料。(要在reverb2伺服器也完成同樣的功能是比較困難的;參考練習 8.4。)


1.
net.Dial()
func Dial(network, address string) (Conn, error)
2.net.TCPConn
type TCPConn struct {
// contains filtered or unexported fields
}
TCPConn is an implementation of the Conn interface for TCP network connections.

 

package mainimport (        "io"        "log"        "net"        "os")func main() {        conn, err := net.Dial("tcp", "localhost:8040")        if err != nil {                log.Fatal(err)        }           //內建make函數建立一個channel,可以發送struct類型的資料        done := make(chan struct{})        //go語句調用一個函數字面量,啟動goroutine的常用形式        go func() {                //從網路連接到標準輸出,如果串連沒斷也會阻塞                //如果TCP的讀串連關閉會報錯:use of closed network connection                _, err := io.Copy(os.Stdout, conn)                log.Println(err)                log.Println("done")                //發送channel給接收goroutine                done <- struct{}{}        }()         //從標準輸入到網路連接中,這個地方會阻塞,按Control+D關閉標準輸入        mustCopy(conn, os.Stdin)        //      conn.Close()        //類型斷言,調用*net.TCPConn的方法CloseWrite()只關閉TCP的寫串連        cw := conn.(*net.TCPConn)        cw.CloseWrite()        <-done // 阻塞等待後台 goroutine 完成接收channel}func mustCopy(dst io.Writer, src io.Reader) {        if _, err := io.Copy(dst, src); err != nil {                log.Fatal(err)        }   }

  

[日常] Go語言聖經--Channel習題

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.