本帖最后由 liyanghml 于 2015-4-7 00:51 编辑
- public class Test
- {
- public static void main(String[] args)
- {
- get_method();
- }
- public static void get_method()
- {
- String str = "abdcdd";
- sop(str.indexOf("bc"));
- }
- public static void sop(Object obj)
- {
- System.out.println(obj);
- }
- }
复制代码
经检测,没有问题,你要仔细检查下 你的代码了
|