I am a beginner in Java and I was reading the topic of giving values to variables through ReadLine() method from the keyboard and the program for that given in book is as follows
import java.io.DataInputStream
class Reading
{
public static void main(String args[])
{
DataInputStream in = new DataInputStream(**System.in**);
int intnumber=0;
float floatnumber=0.0f;
try {
system.out.println("enter an integer: ");
intnumber = Integer.parseInt(**in.Readline()**);
system.out.println("enter a float number: ");
floatnumber = Float.valueOf(in.Readline()).floatvalue();
}
I want to ask following Questions ,
what is done in this statement
DataInputStream in = new DataInputStream(**System.in**);If in is an object of DataInputStream then What is new and what the statement on Right hand side of above statement do?
Why Different methods have been used for putting the integer value into intnumber and float value into floatnumber