answersLogoWhite

0

You usually do not need to delete a String, since when the program no longer refers to it, the garbage collector will clean it up.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

What do you mean by string in java programming?

A "string" in any programming language is a line of text.


Can vector store string values in java programming?

A Vector can store any objects, so yes.


Why is it a bad idea to name your class string?

If you are talking about Java, that will cause confusion with the built-in "String" class. Sure, Java will distinguish "String" (with an uppercase "S") from "string" (which has no uppercase letters), but it can be confusing for the programmer. In various other programming languages, the situation may be similar.


What is the significance of the character string T0526?

The significance of he string T0526 is the functioning of the ECMA script. This is needed when working with Java and programming and used to enhance webpages.


Write a program in java programming language to print welcome to java programming?

public class welcome { public static void main (String args[]) { System.out.println("Welcome to Java programming"); } } There are also many "Hello World" tutorials you can find elsewhere on the internet


Where can one find online tutorials about using string format?

The string format used in C/C++ programming as well as JAVA is covered in many online tutorials. Both Microsoft and Oracle have sections dedicated to programming tutorials.


What programming language are java applets written in?

Java applets are written in the Java programming language. Java is considered to be one of the oldest and most commonly used programming languages in the world.


In what programming language is substr used?

Java is the programming language where substr is used. Substr is a command that returns the characters in a string beginning at the specified location through the specified number of characters.


Sample code in java programming?

public class Hello { public static void main (String args[]) { System.out.println("Hello World"); } }


What is the first name before of the Java Programming?

The first name of the Java Programming was Oak. It then went by the game Green and finally Java from Java coffee.


How can you prove the given string by user is array or not in java?

Strings and Arrays are two totally different data types in Java and they will not match with one another.


How to write A Java program to print number of digits in a given number?

One way to do this is to convert the number to a String, then use the corresponding String method to find out the length of the String.