Java.lang.String.valueOf() Method



Description

The java.lang.String.valueOf(char c) method returns the string representation of the char argument.

Declaration

Following is the declaration for java.lang.String.valueOf() method

public static String valueOf(char c)

Parameters

c − This is a char value.

Return Value

This method returns a string of length 1 containing as its single character the argument c.

Exception

NA

Example

The following example shows the usage of java.lang.String.valueOf() method.

package com.tutorialspoint;

import java.lang.*;

public class StringDemo {

   public static void main(String[] args) {

      String str1 = String.valueOf('k');
      String str2 = String.valueOf('m');

      // print the string representation of char
      System.out.println(str1);
      System.out.println(str2);
   }
}

Let us compile and run the above program, this will produce the following result −

k
m
java_lang_string.htm
Advertisements