clientsocket.cpp

来自「在linux使用c++开发的socke程序」· C++ 代码 · 共 43 行

CPP
43
字号
// Implementation of the ClientSocket class#include "ClientSocket.h"#include "SocketException.h"ClientSocket::ClientSocket ( std::string host, int port ){  if ( ! Socket::create() )    {      throw SocketException ( "Could not create client socket." );    }  if ( ! Socket::connect ( host, port ) )    {      throw SocketException ( "Could not bind to port." );    }}const ClientSocket& ClientSocket::operator << ( const std::string& s ) const{  if ( ! Socket::send ( s ) )    {      throw SocketException ( "Could not write to socket." );    }  return *this;}const ClientSocket& ClientSocket::operator >> ( std::string& s ) const{  if ( ! Socket::recv ( s ) )    {      throw SocketException ( "Could not read from socket." );    }  return *this;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?