HashTable源码剖析

HashTable源码剖析


public class Hashtable<K,V>
    extends Dictionary<K,V>
    implements Map<K,V>, Cloneable, java.io.Serializable {
 
    private transient Entry<K,V>[] table; 
	//table是一个 Entry[] 数组类型,
	//而 Entry(在 HashMap 中有讲解过)实际上就是一个单向链表。
	//哈希表的”key-value键值对”都是存储在Entry数组中的。
 
    private transient int count;//是 Hashtable 的大小,
    //它是 Hashtable 保存的键值对的数量
 
    private int threshold;//是 Hashtable 的阈值,用于判断是否需要调整 Hashtable 的容量。threshold 的值=”容量*加载因子”。
 
    private float loadFactor;//就是加载因子。 
 
    private transient int modCount = 0;  //Hashtable被改变的次数,是用来实现 fail-fast 机制的。  
 
    private static final long serialVersionUID = 1421746759512286392L;// 序列版本号
 
    static final int ALTERNATIVE_HASHING_THRESHOLD_DEFAULT = Integer.MAX_VALUE;//最大的门限阈值,不能超过这个
 
    private static class Holder {
 
        static final int ALTERNATIVE_HASHING_THRESHOLD;
 
        static {
            String altThreshold = java.security.AccessController.doPrivileged(
                new sun.security.action.GetPropertyAction(
                    "jdk.map.althashing.threshold"));
 
            int threshold;
            try {
                threshold = (null != altThreshold)
                        ? Integer.parseInt(altThreshold)
                        : ALTERNATIVE_HASHING_THRESHOLD_DEFAULT;
 
                // disable alternative hashing if -1
                if (threshold == -1) {
                    threshold = Integer.MAX_VALUE;
                }
 
                if (threshold < 0) {
                    throw new IllegalArgumentException("value must be positive integer.");
                }
            } catch(IllegalArgumentException failed) {
                throw new Error("Illegal value for 'jdk.map.althashing.threshold'", failed);
            }
 
            ALTERNATIVE_HASHING_THRESHOLD = threshold;
        }
    }
 
    transient int hashSeed;//0
 
    final boolean initHashSeedAsNeeded(int capacity) {
        boolean currentAltHashing = hashSeed != 0;
        boolean useAltHashing = sun.misc.VM.isBooted() &&
                (capacity >= Holder.ALTERNATIVE_HASHING_THRESHOLD);
        boolean switching = currentAltHashing ^ useAltHashing;
        if (switching) {
            hashSeed = useAltHashing
                ? sun.misc.Hashing.randomHashSeed(this)   //和系统相关,我们的系统结果就是0
                : 0;
        }
        return switching;
    }
 
    private int hash(Object k) {
        // hashSeed will be zero if alternative hashing is disabled.
        return hashSeed ^ k.hashCode();// key hashcode  散列码
    }
 
    public Hashtable(int initialCapacity, float loadFactor) { //用指定初始容量和指定加载因子构造一个新的空哈希表。
        if (initialCapacity < 0)
            throw new IllegalArgumentException("Illegal Capacity: "+
                                               initialCapacity);
        if (loadFactor <= 0 || Float.isNaN(loadFactor))
            throw new IllegalArgumentException("Illegal Load: "+loadFactor);
 
        if (initialCapacity==0)
            initialCapacity = 1;
        this.loadFactor = loadFactor;
        table = new Entry[initialCapacity];//初始化数组table
        threshold = (int)Math.min(initialCapacity * loadFactor, MAX_ARRAY_SIZE + 1);//初始化阈值 = 容量*加载因子
        initHashSeedAsNeeded(initialCapacity);
    }
 
    public Hashtable(int initialCapacity) { //用指定初始容量和默认的加载因子 (0.75) 构造一个新的空哈希表。
        this(initialCapacity, 0.75f);
    }
 
    //默认构造方法
    public Hashtable() {  //容量为 11,加载因子为 0.75 threshold默认情况下为8
        this(11, 0.75f);
    }
 
    public Hashtable(Map<? extends K, ? extends V> t) {  //构造一个与给定的 Map 具有相同映射关系的新哈希表
        this(Math.max(2*t.size(), 11), 0.75f);//先比较容量,如果Map的2倍容量大于11,则使用新的容量
        putAll(t);
    }
 
    public synchronized int size() {//返回table数组中Entry数
        return count;
    }
 
    public synchronized boolean isEmpty() {//判断是否为空
        return count == 0;
    }
 
    public synchronized Enumeration<K> keys() {//返回所有key的枚举对象
        return this.<K>getEnumeration(KEYS);
    }
 
    public synchronized Enumeration<V> elements() {//返回所有value的枚举对象
        return this.<V>getEnumeration(VALUES);
    }
 
    public synchronized boolean contains(Object value) {//判断Hashtable中是否包含value值
        if (value == null) {//value不能为空
            throw new NullPointerException();
        }
 
        Entry tab[] = table;
		//从后向前遍历table数组中的元素(Entry)
        for (int i = tab.length ; i-- > 0 ;) {   //双层for循环全局搜索,速度非常慢
            for (Entry<K,V> e = tab[i] ; e != null ; e = e.next) {
                if (e.value.equals(value)) {
                    return true;
                }
            }
        }
        return false;
    }
 
    public boolean containsValue(Object value) {
        return contains(value);
    }
 
    public synchronized boolean containsKey(Object key) {//判断Hashtable中是否包含key
        Entry tab[] = table;
        int hash = hash(key);
        int index = (hash & 0x7FFFFFFF) % tab.length;  //计算数组下标
        for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
            if ((e.hash == hash) && e.key.equals(key)) {
                return true;
            }
        }
        return false;
    }
 
    public synchronized V get(Object key) {
        Entry tab[] = table;
        int hash = hash(key);
        int index = (hash & 0x7FFFFFFF) % tab.length; //计算数组下标
        for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
            if ((e.hash == hash) && e.key.equals(key)) {
                return e.value;//拿到value
            }
        }
        return null;
    }
 
    private static final int MAX_ARRAY_SIZE = Integer.MAX_VALUE - 8;
 
    protected void rehash() {	   //当容量增加之后需要对所有元素进行rehash存储位置随即发生改变
        int oldCapacity = table.length;
        Entry<K,V>[] oldMap = table;//保存旧数组
 
        // overflow-conscious code
        int newCapacity = (oldCapacity << 1) + 1;   //2倍+1扩容
        if (newCapacity - MAX_ARRAY_SIZE > 0) {
            if (oldCapacity == MAX_ARRAY_SIZE)
                // Keep running with MAX_ARRAY_SIZE buckets
                return;
            newCapacity = MAX_ARRAY_SIZE;//不能超出最大值
        }
        Entry<K,V>[] newMap = new Entry[newCapacity];
 
        modCount++;
        threshold = (int)Math.min(newCapacity * loadFactor, MAX_ARRAY_SIZE + 1);
        boolean rehash = initHashSeedAsNeeded(newCapacity);
 
        table = newMap;
 
        for (int i = oldCapacity ; i-- > 0 ;) {
            for (Entry<K,V> old = oldMap[i] ; old != null ; ) {
                Entry<K,V> e = old;
                old = old.next;
 
                if (rehash) {
                    e.hash = hash(e.key);
                }
                int index = (e.hash & 0x7FFFFFFF) % newCapacity;//重新计算在新的数组中的索引
                e.next = newMap[index];//第一次newMap[index]为空,后面每次的next都是当前的Entry,这样才能连上
                newMap[index] = e;//然后将该Entry放到当前位置
            }
        }
    }
 
    public synchronized V put(K key, V value) {
        // Make sure the value is not null
        if (value == null) {//确保value不为null
            throw new NullPointerException();
        }
 
        // Makes sure the key is not already in the hashtable.
         //确保key不在hashtable中
    	//首先,通过hash方法计算key的哈希值,并计算得出index值,确定其在table[]中的位置
    	//其次,迭代index索引位置的链表,如果该位置处的链表存在相同的key,则替换value,返回旧的value
        Entry tab[] = table;
        int hash = hash(key);//计算哈希值
        int index = (hash & 0x7FFFFFFF) % tab.length;//0x7FFFFFFF整数的最大值//根据哈希值计算在数组中的索引
        for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
            if ((e.hash == hash) && e.key.equals(key)) {//如果对应的key已经存在
                V old = e.value;     //添加元素如果key重复会被覆盖
                e.value = value;
                return old;
            }
        }
 
        modCount++;//否则新添加一个Entry
        if (count >= threshold) {
            // Rehash the table if the threshold is exceeded
            rehash();     //当存储的键值对数量大于阈值时调用rehash()扩容
 
            tab = table;
            hash = hash(key);
            index = (hash & 0x7FFFFFFF) % tab.length;
        }
 
        // Creates the new entry.
        Entry<K,V> e = tab[index];
        tab[index] = new Entry<>(hash, key, value, e);//存到对应的位置,并将其next置为原来该位置的Entry,这样就与原来的连上了
        count++;
        return null;
    }
 
    public synchronized V remove(Object key) {//删除Hashtable中键为key的Entry,并返回value
        Entry tab[] = table;
        int hash = hash(key);
        int index = (hash & 0x7FFFFFFF) % tab.length;
		//找到key对应的Entry,然后在链表中找到要删除的节点,删除
        for (Entry<K,V> e = tab[index], prev = null ; e != null ; prev = e, e = e.next) {
            if ((e.hash == hash) && e.key.equals(key)) {
                modCount++;
                if (prev != null) {
                    prev.next = e.next;
                } else {
                    tab[index] = e.next;
                }
                count--;
                V oldValue = e.value;
                e.value = null;
                return oldValue;
            }
        }
        return null;
    }
 
    public synchronized void putAll(Map<? extends K, ? extends V> t) {
        for (Map.Entry<? extends K, ? extends V> e : t.entrySet())
            put(e.getKey(), e.getValue());
    }
 
    public synchronized void clear() {//清空Hashtable
        Entry tab[] = table;
        modCount++;
        for (int index = tab.length; --index >= 0; )
            tab[index] = null;//将Hashtable中数组值全部设置为null
        count = 0;
    }
 
    public synchronized Object clone() {//克隆一个Hashtable,并以Object的形式返回
        try {
            Hashtable<K,V> t = (Hashtable<K,V>) super.clone();
            t.table = new Entry[table.length];
            for (int i = table.length ; i-- > 0 ; ) {
                t.table[i] = (table[i] != null)
                    ? (Entry<K,V>) table[i].clone() : null;
            }
            t.keySet = null;
            t.entrySet = null;
            t.values = null;
            t.modCount = 0;
            return t;
        } catch (CloneNotSupportedException e) {
            // this shouldn't happen, since we are Cloneable
            throw new InternalError();
        }
    }
 
    public synchronized String toString() {//重写toString方法
        int max = size() - 1;
        if (max == -1)
            return "{}";
 
        StringBuilder sb = new StringBuilder();
        Iterator<Map.Entry<K,V>> it = entrySet().iterator();
 
        sb.append('{');
        for (int i = 0; ; i++) {
            Map.Entry<K,V> e = it.next();
            K key = e.getKey();
            V value = e.getValue();
            sb.append(key   == this ? "(this Map)" : key.toString());
            sb.append('=');
            sb.append(value == this ? "(this Map)" : value.toString());
 
            if (i == max)
                return sb.append('}').toString();
            sb.append(", ");
        }
    }
 
 
    private <T> Enumeration<T> getEnumeration(int type) {//内部私有方法,返回枚举对象
        if (count == 0) {
            return Collections.emptyEnumeration();
        } else {
            return new Enumerator<>(type, false);//new一个Enumeration对象
        }
    }
 
	//获取Hashtable的迭代器
	//若Hashtable的实际大小为0,则返回空迭代器对象
	//否则,返回正常的Enumerator的对象
    private <T> Iterator<T> getIterator(int type) {
        if (count == 0) {
            return Collections.emptyIterator();
        } else {
            return new Enumerator<>(type, true);
        }
    }
 
    // Views
    private transient volatile Set<K> keySet = null;//Hashtable的key的集合,它是一个Set,意味着没有重复元素
    private transient volatile Set<Map.Entry<K,V>> entrySet = null;//Hashtable的key-value的集合,它是一个Set,意味着没有重复元素
    private transient volatile Collection<V> values = null;//Hashtable的value的集合,它是一个Collection,意味着可以有重复元素
 
    //返回一个被synchronizedSet封装后的keySet对象
    //synchronizedSet封装的目的是对keySet的所有方法都添加synchronized,实现多线程同步
    public Set<K> keySet() {
        if (keySet == null)
            keySet = Collections.synchronizedSet(new KeySet(), this);
        return keySet;
    }
 
    private class KeySet extends AbstractSet<K> {
        public Iterator<K> iterator() {
            return getIterator(KEYS);
        }
        public int size() {
            return count;
        }
        public boolean contains(Object o) {
            return containsKey(o);
        }
        public boolean remove(Object o) {
            return Hashtable.this.remove(o) != null;
        }
        public void clear() {
            Hashtable.this.clear();
        }
    }
 
    public Set<Map.Entry<K,V>> entrySet() {//返回一个被synchronizedSet封装后的entrySet对象
        if (entrySet==null)
            entrySet = Collections.synchronizedSet(new EntrySet(), this);
        return entrySet;
    }
 
    private class EntrySet extends AbstractSet<Map.Entry<K,V>> {
        public Iterator<Map.Entry<K,V>> iterator() {
            return getIterator(ENTRIES);
        }
 
        public boolean add(Map.Entry<K,V> o) {
            return super.add(o);
        }
 
        public boolean contains(Object o) {
            if (!(o instanceof Map.Entry))
                return false;
            Map.Entry entry = (Map.Entry)o;
            Object key = entry.getKey();
            Entry[] tab = table;
            int hash = hash(key);
            int index = (hash & 0x7FFFFFFF) % tab.length;
 
            for (Entry e = tab[index]; e != null; e = e.next)
                if (e.hash==hash && e.equals(entry))
                    return true;
            return false;
        }
 
        public boolean remove(Object o) {
            if (!(o instanceof Map.Entry))
                return false;
            Map.Entry<K,V> entry = (Map.Entry<K,V>) o;
            K key = entry.getKey();
            Entry[] tab = table;
            int hash = hash(key);
            int index = (hash & 0x7FFFFFFF) % tab.length;
 
            for (Entry<K,V> e = tab[index], prev = null; e != null;
                 prev = e, e = e.next) {
                if (e.hash==hash && e.equals(entry)) {
                    modCount++;
                    if (prev != null)
                        prev.next = e.next;
                    else
                        tab[index] = e.next;
 
                    count--;
                    e.value = null;
                    return true;
                }
            }
            return false;
        }
 
        public int size() {
            return count;
        }
 
        public void clear() {
            Hashtable.this.clear();
        }
    }
 
     //返回一个被synchronizedCollection封装后的ValueCollection对象
     //synchronizedCollection封装的目的是对ValueCollection的所有方法都添加synchronized,实现多线程同步
    public Collection<V> values() {
        if (values==null)
            values = Collections.synchronizedCollection(new ValueCollection(),
                                                        this);
        return values;
    }
 
    private class ValueCollection extends AbstractCollection<V> {
        public Iterator<V> iterator() {
            return getIterator(VALUES);
        }
        public int size() {
            return count;
        }
        public boolean contains(Object o) {
            return containsValue(o);
        }
        public void clear() {
            Hashtable.this.clear();
        }
    }
 
     //重写equals()方法
     //若两个Hashtable的所有key-value键值对都相等,则判断它们两个相等
    public synchronized boolean equals(Object o) {
        if (o == this)
            return true;
 
        if (!(o instanceof Map))
            return false;
        Map<K,V> t = (Map<K,V>) o;
        if (t.size() != size())
            return false;
 
        try {
            Iterator<Map.Entry<K,V>> i = entrySet().iterator();
            while (i.hasNext()) {
                Map.Entry<K,V> e = i.next();
                K key = e.getKey();
                V value = e.getValue();
                if (value == null) {
                    if (!(t.get(key)==null && t.containsKey(key)))
                        return false;
                } else {
                    if (!value.equals(t.get(key)))
                        return false;
                }
            }
        } catch (ClassCastException unused)   {
            return false;
        } catch (NullPointerException unused) {
            return false;
        }
 
        return true;
    }
 
     //计算哈希值
     //若Hashtable的实际大小为0或者加载因子<0,则返回0
     //否则返回Hashtable中的每个Entry的key和value的异或值的总和
    public synchronized int hashCode() {
        int h = 0;
        if (count == 0 || loadFactor < 0)
            return h;  // Returns zero
 
        loadFactor = -loadFactor;  // Mark hashCode computation in progress
        Entry[] tab = table;
        for (Entry<K,V> entry : tab)
            while (entry != null) {
                h += entry.hashCode();
                entry = entry.next;
            }
        loadFactor = -loadFactor;  // Mark hashCode computation complete
 
        return h;
    }
 
    //java.io.Serializable的写入函数
    //将Hashtable的总的容量,实际容量,所有的Entry都写入到输出流中
    private void writeObject(java.io.ObjectOutputStream s)
            throws IOException {
        Entry<K, V> entryStack = null;
 
        synchronized (this) {
            // Write out the length, threshold, loadfactor
            s.defaultWriteObject();
 
            // Write out length, count of elements
            s.writeInt(table.length);
            s.writeInt(count);
 
            // Stack copies of the entries in the table
            for (int index = 0; index < table.length; index++) {
                Entry<K,V> entry = table[index];
 
                while (entry != null) {
                    entryStack =
                        new Entry<>(0, entry.key, entry.value, entryStack);
                    entry = entry.next;
                }
            }
        }
 
        // Write out the key/value objects from the stacked entries
        while (entryStack != null) {
            s.writeObject(entryStack.key);
            s.writeObject(entryStack.value);
            entryStack = entryStack.next;
        }
    }
 
    //java.io.Serializable的读取函数:根据写入方式读出
    //将Hashtable的总的容量,实际容量,所有的Entry依次读出
    private void readObject(java.io.ObjectInputStream s)
         throws IOException, ClassNotFoundException
    {
        // Read in the length, threshold, and loadfactor
        s.defaultReadObject();
 
        // Read the original length of the array and number of elements
        int origlength = s.readInt();
        int elements = s.readInt();
 
        // Compute new size with a bit of room 5% to grow but
        // no larger than the original size.  Make the length
        // odd if it's large enough, this helps distribute the entries.
        // Guard against the length ending up zero, that's not valid.
        int length = (int)(elements * loadFactor) + (elements / 20) + 3;
        if (length > elements && (length & 1) == 0)
            length--;
        if (origlength > 0 && length > origlength)
            length = origlength;
 
        Entry<K,V>[] newTable = new Entry[length];
        threshold = (int) Math.min(length * loadFactor, MAX_ARRAY_SIZE + 1);
        count = 0;
        initHashSeedAsNeeded(length);
 
        // Read the number of elements and then all the key/value objects
        for (; elements > 0; elements--) {
            K key = (K)s.readObject();
            V value = (V)s.readObject();
            // synch could be eliminated for performance
            reconstitutionPut(newTable, key, value);
        }
        this.table = newTable;
    }
 
    private void reconstitutionPut(Entry<K,V>[] tab, K key, V value)
        throws StreamCorruptedException
    {
        if (value == null) {
            throw new java.io.StreamCorruptedException();
        }
        // Makes sure the key is not already in the hashtable.
        // This should not happen in deserialized version.
        int hash = hash(key);
        int index = (hash & 0x7FFFFFFF) % tab.length;
        for (Entry<K,V> e = tab[index] ; e != null ; e = e.next) {
            if ((e.hash == hash) && e.key.equals(key)) {
                throw new java.io.StreamCorruptedException();
            }
        }
        // Creates the new entry.
        Entry<K,V> e = tab[index];
        tab[index] = new Entry<>(hash, key, value, e);
        count++;
    }
 
	//Entry实体类的定义
    private static class Entry<K,V> implements Map.Entry<K,V> {
        int hash;//哈希值
        final K key;
        V value;
        Entry<K,V> next;//指向的下一个Entry,即链表的下一个节点
 
        protected Entry(int hash, K key, V value, Entry<K,V> next) {//构造方法
            this.hash = hash;
            this.key =  key;
            this.value = value;
            this.next = next;
        }
 
        protected Object clone() {//由于HashTable实现了Cloneable接口,所以支持克隆操作
            return new Entry<>(hash, key, value,
                                  (next==null ? null : (Entry<K,V>) next.clone()));
        }
 
        // Map.Entry Ops
 
        public K getKey() {//获取key
            return key;
        }
 
        public V getValue() {//获取value
            return value;
        }
 
        public V setValue(V value) {//设置value
            if (value == null)//从这里可以看出,Hashtable中的value不允许为空
                throw new NullPointerException();
 
            V oldValue = this.value;
            this.value = value;
            return oldValue;
        }
 
        public boolean equals(Object o) {//判断两个Entry是否相等
            if (!(o instanceof Map.Entry))
                return false;
            Map.Entry<?,?> e = (Map.Entry)o;
 
            return key.equals(e.getKey()) && value.equals(e.getValue());//必须两个Entry的key和value均相等才行
        }
 
        public int hashCode() {//计算hashCode
            return (Objects.hashCode(key) ^ Objects.hashCode(value));
        }
 
        public String toString() {//重写toString方法
            return key.toString()+"="+value.toString();
        }
    }
 
    // Types of Enumerations/Iterations
    private static final int KEYS = 0;
    private static final int VALUES = 1;
    private static final int ENTRIES = 2;
 
    private class Enumerator<T> implements Enumeration<T>, Iterator<T> {//私有内部类,实现了Enumeration接口和Iterator接口
        Entry[] table = Hashtable.this.table;
        int index = table.length;
        Entry<K,V> entry = null;
        Entry<K,V> lastReturned = null;
        int type;
 
        /**
         * Indicates whether this Enumerator is serving as an Iterator
         * or an Enumeration.  (true -> Iterator).
         */
        boolean iterator;//该字段用来决定是使用iterator还是Enumeration //false表示使用Enumeration
 
        /**
         * The modCount value that the iterator believes that the backing
         * Hashtable should have.  If this expectation is violated, the iterator
         * has detected concurrent modification.
         */
        protected int expectedModCount = modCount;//用于fail-fast机制
 
        Enumerator(int type, boolean iterator) {
            this.type = type;
            this.iterator = iterator;
        }
 
        public boolean hasMoreElements() {//判断是否含有下一个元素
            Entry<K,V> e = entry;
            int i = index;
            Entry[] t = table;
            /* Use locals for faster loop iteration */
            while (e == null && i > 0) {
                e = t[--i];
            }
            entry = e;
            index = i;
            return e != null;
        }
 
        public T nextElement() {//获得下一个元素
            Entry<K,V> et = entry;
            int i = index;
            Entry[] t = table;
            /* Use locals for faster loop iteration */
            while (et == null && i > 0) {
                et = t[--i];
            }
            entry = et;
            index = i;
            if (et != null) {
                Entry<K,V> e = lastReturned = entry;
                entry = e.next;
                return type == KEYS ? (T)e.key : (type == VALUES ? (T)e.value : (T)e);
            }
            throw new NoSuchElementException("Hashtable Enumerator");
        }
 
        // Iterator methods
        public boolean hasNext() {
            return hasMoreElements();
        }
 
        public T next() {
            if (modCount != expectedModCount)
                throw new ConcurrentModificationException();
            return nextElement();
        }
 
        public void remove() {
            if (!iterator)
                throw new UnsupportedOperationException();
            if (lastReturned == null)
                throw new IllegalStateException("Hashtable Enumerator");
            if (modCount != expectedModCount)
                throw new ConcurrentModificationException();
 
            synchronized(Hashtable.this) {//保证了线程安全
                Entry[] tab = Hashtable.this.table;
                int index = (lastReturned.hash & 0x7FFFFFFF) % tab.length;
 
                for (Entry<K,V> e = tab[index], prev = null; e != null;
                     prev = e, e = e.next) {
                    if (e == lastReturned) {
                        modCount++;
                        expectedModCount++;
                        if (prev == null)
                            tab[index] = e.next;
                        else
                            prev.next = e.next;
                        count--;
                        lastReturned = null;
                        return;
                    }
                }
                throw new ConcurrentModificationException();
            }
        }
    }
}
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值