Java.lang.String.valueOf() Method



Description

The java.lang.String.valueOf(long l) method returns the string representation of the long argument.

Declaration

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

public static String valueOf(long l)

Parameters

i − This is a long value.

Return Value

This method returns a string representation of the long argument.

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(432567);
      String str2 = String.valueOf(Long.MIN_VALUE);
      String str3 = String.valueOf(Long.MAX_VALUE);

      // prints the string representations of long
      System.out.println(str1);
      System.out.println(str2);
      System.out.println(str3);
   }
}

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

432567
-9223372036854775808
9223372036854775807

java_lang_string.htm
Advertisements
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy