Q:

Java program to convert any type of value to string value using String.valueOf() method

belongs to collection: Java String Programs

0

String.valueOf()

This is a predefined (in-built) function of String class; it returns string value of any type of value.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Consider the program:

Given different type of values and we have to convert and print them in string format.

class ConvertIntoString
{
	public static void main(String args[])
	{
		//define different type of values
		int intVal=120;
		float floatVal=12.34f;
		double doubleVal=2345.0d;
		boolean booleanVal=true;

		System.out.println("After converting into string");
		
		//printing values in string format 
		System.out.println("String value of intVal: "+ String.valueOf(intVal));
		System.out.println("String value of floatVal: "+ String.valueOf(floatVal));
		System.out.println("String value of doubleVal: "+ String.valueOf(doubleVal));
		System.out.println("String value of booleanVal: "+ String.valueOf(booleanVal));  
	}
}

Output

Complie: javac ConvertIntoString.java
Run: java ConvertIntoString

Output

After converting into string
String value of intVal: 120
String value of floatVal: 12.34
String value of doubleVal: 2345.0
String value of booleanVal: true    

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java String Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to compare two strings using String.c... >>
<< Java program to get sub string from a given string...