OneBite.Dev - Coding blog in a bite size

declare a string in java

Code snippet on how to declare a string in java

  String sampleString = "This is a string";

This code creates a string variable called “sampleString” and assigns it the value of “This is a string”. Strings are objects in Java and are declared using the keyword “String”. The equal sign (=) is used to assign the desired string value to the variable. Double quotes (”) are used to indicate the beginning and end of the string, and everything in between the quotes is considered part of the string value. The semicolon (;) at the end of the line indicates that the statement is complete.

java