0

我想扩展 AbstractStringBuilder 并获得与 StringBuilder 相同的类,但具有与 String.hashCode() 相同的 hashCode() 方法。目的是使用这个新的子类作为 Hashtable 中的键。我想试验一下 Hashtable 和这个新的子类,看看会发生什么,因为最后我想解决一些内存问题,StringBuilder 解决了其中的一些问题,但不是全部。所以,这是子类,

import java.lang.*;

public final class StringCon extends AbstractStringBuilder implements java.io.Serializable, CharSequence
{
    public StringCon()
    {
        super( 16);
    }

    public StringCon( int capacity)
    {
        super( capacity);
    }

    public StringCon( String str)
    {
        super( str.length() + 16);
        append( str);
    }

    public StringCon append( Object obj)
    {
        return append( String.valueOf( obj));
    }

    public StringCon append( String str)
    {
        super.append( str);
        return this;
    }

    public StringCon delete( int start, int end)
    {
        super.delete( start, end);
        return this;
    }

    public StringCon delete( int start)
    {
        super.delete( start, this.length());
        return this;
    }

    public int indexOf( String str)
    {
        return indexOf( str, 0);
    }

    public int indexOf( String str, int fromIndex)
    {
        return String.indexOf( value, 0, count, str.toCharArray(), 0, str.length(), fromIndex);
    }

    public int hashCode()
    {
        int hash = 0;
        int h = hash;
        if( h == 0 && count > 0)
        {
            int off = 0;
            char val[] = value;
            int len = count;
            for( int i = 0; i < len; i++)
                h = 31*h + val[ off++];

            hash = h;
        }
        return h;
    }
}

我只实现我将要使用的方法。问题是,

1) 编译器找不到符号值、计数甚至关键字 super。这些符号在 AbstarctStringBuilder 中定义,StringBuilder 可以自由使用。为什么?

2) 编译器找不到方法 AbstractStringBuilder.substring()。为什么?

3)我得到错误,

error: type argument StringCon is not within bounds of type-variable E

在一份声明中

hth = ( j + 1 < al.size()) ? new Hashtable< StringCon, LinkedList< StringCon>>( al.get( j + 1).size(), 0.75F) : null; 

4)我得到错误

error: method containsKey in class Hashtable<K,V> cannot be applied to given types;
                    if( hth.isEmpty() || !hth.containsKey( nextKey))
                                             ^
required: Object
found: StringCon
reason: actual argument StringCon cannot be converted to Object by method invocation conversion
where K,V are type-variables:
 K extends Object declared in class Hashtable
 V extends Object declared in class Hashtable

其中 nextKey 是一个 StringCon 对象。

上面的各种方法我都是从 StringBuilder 和 String 类中复制过来的。

什么是我不明白的,我的错误在哪里?如果这有任何重要性,我将在 Hadoop 的上下文中使用上述所有内容。

4

1 回答 1

2

java.lang.AbstractStringBuilder不是public,所以只能被其他类扩展java.lang。尝试编译代码会出现第一个错误:

StringCon.java:3: java.lang.AbstractStringBuilder is not public in java.lang;
cannot be accessed from outside package

通常不建议使用可变类作为哈希表中的键(可变哈希映射键是一种危险的做法吗?)。可能有更好的方法来解决您的问题:

因为最后我想解决一些内存问题,StringBuilder 解决了其中的一些问题,但不是全部

考虑直接询问有关内存问题的问题。

于 2013-09-21T15:07:59.367 回答