(no title)
babuskov | 3 months ago
String a = new String();
String b = new String();
a = "test";
b = a + "";
if (a == "test")
{
// true
}
if (b == "test")
{
// false
}
if (a == b)
{
// false
}
Just like PHP, you have to read the docs to use it properly.
philipallstar|3 months ago
unknown|3 months ago
[deleted]
Yokolos|3 months ago