扩展AbstractStringBuilder并在Hashtable中使用子类时出现的问题

时间:2013-09-21 12:23:56

标签: java inheritance hashtable super

我想扩展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的上下文中使用了以上所有内容,如果这有任何重要性的话。

1 个答案:

答案 0 :(得分: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

通常不建议使用可变类作为哈希表中的键(Are mutable hashmap keys a dangerous practice?)。可能有更好的方法来解决您的问题:

  

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

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