...
Monday, August 26, 2019
Friday, August 23, 2019
Strings in Java
String represents group of characters.
In C, C++ languages, a String represents an array of characters, where the last character being '\0' represents the end of the string. But this is not valid in Java, a string is an object of String class. It is not a character array. In java, we got character array also, but strings are given a different treatment because of their extensive use on internet. JavaSoft people have created a...
Thursday, August 22, 2019
Uses of Threads
Threads are mainly used in server-side programs to serve the needs of multiple clients on a network or Internet. On Internet, a server machine has to cater the needs of thousands of clients, at a time. If we use threads in the server, they can do various jobs at a time, thus they can handle several clients.
Threads are also used to create games and animation. Animation means moving the objects from one place to another. In many games, generally...