摘要: 方法 Java方法是语句的集合,它们在一起执行一个功能 **System.out.println()**是什么意思 System类中的out对象的println()方法 public class Main{ public static void main(String[] args){ Scanne 阅读全文
posted @ 2021-02-06 23:27 2月2日 阅读(54) 评论(0) 推荐(0)
摘要: 给定两字符串A和B,如果能将A从中间某个位置分割为左右两部分字符串(都不为空串),并将左边的字符串移动到右边字符串后面组成新的字符串可以变为字符串B时返回true。 阅读全文
posted @ 2021-02-06 10:39 2月2日 阅读(159) 评论(0) 推荐(0)