I was wondering whether networking is easier in Java or C++. Because I know in Java networking with sockets and such is incredibly easy, such as doing the following:
Socket s= new Socket();
s.connect(new SocketAddress("localhost",8888));
and if it is significantly harder in C++ that heavily influences my decision. Thanks in advance!
