fork download
  1. class string_class {
  2. public static void main(String args[])
  3. {
  4. String obj = "I LIKE JAVA";
  5. System.out.println(obj.length());
  6. }
  7. }
Success #stdin #stdout 0.08s 54644KB
stdin
stdout
11