You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

StrBuild.java 155B

12345678
  1. package test3;
  2. public class StrBuild {
  3. public int test() {
  4. StringBuilder sb = new StringBuilder("test");
  5. return sb.charAt(0);
  6. }
  7. }