摘要:
1.为什么 wait,notify 和 notifyAll 是在 Object 类中定义的而不是在 Thread 类中定义: 1) wait 和 notify 不仅仅是普通方法或同步工具,更重要的是它们是 Java 中两个线程之间的通信机制。 2) 每个对象都可上锁,这是在 Object 类而不是 阅读全文
摘要:
package com.fu;/** * @auther 付强 * @date 2020/2/12 - 12:58 *///二分查找public class testsearch1 { public static void main(String[] args) { int arr[]={1,3,5 阅读全文
摘要:
package com.fu;import com.sun.org.apache.xpath.internal.SourceTree;import java.util.Scanner;/** * @auther 付强 * @date 2020/2/12 - 11:27 */public class 阅读全文
摘要:
package com.fu;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/12 - 10:54 */public class TestArray3 { public static void main(String[] args) { 阅读全文
摘要:
package com.fu;import java.util.Arrays;/** * @auther 付强 * @date 2020/2/12 - 10:29 */public class TestArray2 { //数组扩容 public static void main(String[] 阅读全文
摘要:
package com.fu;import java.util.ArrayList;/** * @auther 付强 * @date 2020/2/12 - 10:02 */public class TestArray { public static void main(String[] args) 阅读全文