4. How to convert long to String.
💡Code:
public class LongToStringConversion7078 {
public static void main(String[] args) {
// Example long
long number = 123456789012345L;
// Convert the long to a String
String convertedString = convertLongToString(number);
// Print the converted String
System.out.println("Converted String: " + convertedString);
}
// Function to convert a long to a String
private static String convertLongToString(long num) {
// Use String.valueOf() to convert the long to a String
return String.valueOf(num);
}
}
📸Output :