surfmatic's Profile
Reputation: -1
Dishonored
- Group:
- Members
- Active Posts:
- 16 (0.11 per day)
- Joined:
- 21-January 13
- Profile Views:
- 82
- Last Active:
May 12 2013 09:49 PM- Currently:
- Offline
Previous Fields
- Dream Kudos:
- 0
Awards I've Earned
This user hasn't been given any awards yet.
My Information
- Member Title:
- New D.I.C Head
- Age:
- Age Unknown
- Birthday:
- Birthday Unknown
- Gender:
Contact Information
- E-mail:
- Private
Friends
|
|


Find Topics
Find Posts
View Reputation Given

|
Comments
burakaltr
13 Mar 2013 - 20:36public static void main(String...args){
String s1 = new String( "CSE 11" );
String s2 = new String( "CSE 11" );
String s3 = s1;
s1 = "CSE 11";
System.out.println(s1 == s2);
System.out.println(s1 == s3);
System.out.println(s2 == s3);
System.out.println(s1.equals(s2));
Syste...