So, I was wondering what the difference was between this:
first = "Hello!"
and:
String first = "Hello!"
|
|
The former assigns to a declared variable; the latter declares and assigns a variable. |
|||||
|
|
I don't think this:
will compile as the compiler will throw an error asking for the type of first. Java is a strongly typed language - each variable needs a well-defined type. I'm ignoring generic types like E for the moment... |
|||
|
|
|
Not really sure what you're asking. In your first example: |
|||
|
|
will not compile correctly because it doesn't have a type. In Java, when you create a variable (in this instance called 'first'), you must give it a type such as String, int, long, et cetera. Because the type wasn't given, it doesn't know what to do. So, when you create the variable, you must use You don't need to give the type when the variable is already declared. For example,
first will now be "Goodbye!" |
|||
|
|
|
At first glance there is no other difference than the first variable is declared in another line probably an instance variable? In memory the strings are being pooled so that should be it. |
|||
|
|