java中set集合中元素不重复是根据什么来判断的19
发布网友
发布时间:2023-10-17 22:13
我来回答
共3个回答
热心网友
时间:2024-12-02 15:08
可以考虑如下定义方式:
>> syms a b c d %%%%% 定义符号变量
>> a = [a b;c d] %%%%% 产生矩阵
a =
[ a, b]
[ c, d]
>> subs(a,{a,b,c,d},{1 2 3 4}) %%%%%%% 变量赋值
ans =
1 2
3 4
补充回答,也可以采用结构变量的方法,例如:
>> a = struct('x1',0,'x2',0,'x3',0,'x4',0); %%%%%% 定义结构变量a,并初始化
>> b = [a.x1 a.x2;a.x3 a.x4] %%%%%% 获取初始化矩阵
b =
0 0
0 0
>> a.x1 = 5; %%%%%% 变量赋值
>> a.x2 = 6;
>> a.x3 = 7;
>> a.x4 = 8;
>> b = [a.x1 a.x2;a.x3 a.x4] %%%%% 新矩阵
b =
5 6
7 8
变量a,矩阵B
直接写B(X,Y)=a就行
/**
* Adds the specified element to this set if it is not already present.
* More formally, adds the specified element e to this set if
* this set contains no element e2 such that
* (e==null ? e2==null : e.equals(e2)).
* If this set already contains the element, the call leaves the set
* unchanged and returns false.
*
* @param e element to be added to this set
* @return true if this set did not already contain the specified
* element
*/
public boolean add(E e) {
return map.put(e, PRESENT)==null;
}以上是HashSet.add说明
1
1
热心网友
时间:2024-12-02 15:08
源码HashSet.add:
public boolean add(E e) {
return map.put(e, PRESENT)==null;
}
源码HashMap.put:
public V put(K key, V value) {
if (key == null)
return putForNullKey(value);
int hash = hash(key.hashCode());
int i = indexFor(hash, table.length);
for (Entry<K,V> e = table[i]; e != null; e = e.next) {
Object k;
if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {
V oldValue = e.value;
e.value = value;
e.recordAccess(this);
return oldValue;
}
}
modCount++;
addEntry(hash, key, value, i);
return null;
}
由此可见,HashSet是根据放入object的hashcode做判断,然后遍历查找是否有hashcode值和键相同的元素。若存在则返回已有元素,不在entry里再添加
这段:
if (e.hash == hash && ((k = e.key) == key || key.equals(k))) {
V oldValue = e.value;
e.value = value;
e.recordAccess(this);
return oldValue;
}
若不存在,返回null,并添加:
addEntry(hash, key, value, i);
return null;
然后你就能根据return map.put(e, PRESENT)==null; 这个得知你是否添加成功,换句话说就是是否存在。true添加成功不存在,false添加失败存在
因为只有继承了Object的类才具有hashcode,所以基本类型如int都是由他们的包装类
另外加一点泛型的知识,若你的Set用到了泛型,E则代表泛型类型。否则为Object
希望可以帮到你
热心网友
时间:2024-12-02 15:08
对象实例引用,类似于地址。基本类型是根据值,如Integer这些