Given an array of integers and an integer k, you need to find the total number of continuous subarrays whose sum equals to k. Example 1: Input:nums = [1,1,1], k = 2Output: 2 思路:用prefixsum prefixsu
1. ==运算符 ==是一个运算符,其用于比较两个变量的内存地址是否相等;对于基本数据类型(int、char、Boolean等),==比较的是它们的值;而对于引用数据类型的话(String、Object、ArrayList等),==比较的是引用,也就是对象在内存中的地址,即检查两个引用是否指向堆内存中的同一个对象实例。 代码举例: public class Main {public stat
Object类中的equals方法,使用的是双等号进行的引用的比较 class Student{ String name; int age; public Student(){} public Student(String name;int age){ this.name=name; this.age=age; } } public class TestStu
Java开发-面试题-0005-==和String的equals()和String的intern()方法的区别 更多内容欢迎关注我(持续更新中,欢迎Star✨) Github:CodeZeng1998/Java-Developer-Work-Note 技术公众号:CodeZeng1998(纯纯技术文) 生活公众号:好锅(Life is more than code) CSDN: Code