Type T is not a valid substitute for the bounded parameter `>`.

huangapple go评论102阅读模式
英文:

Type T is not a valide Substitute for the bounded Parameter `<T extends Collection<?>>

问题

以下是您提供的代码的翻译部分:

  1. package einfuehrung.knodenUndListeKopie;
  2. import java.util.Iterator;
  3. import java.util.NoSuchElementException;
  4. public class List<T> {
  5. private class ListIterator<K> implements Iterator<T> {
  6. private Node<T> node = null;
  7. public ListIterator() {
  8. node = head;
  9. }
  10. @Override
  11. public boolean hasNext() {
  12. return node.getNext() != null;
  13. }
  14. @Override
  15. public T next() {
  16. if (!hasNext()) {
  17. throw new NoSuchElementException();
  18. }
  19. node = node.getNext();
  20. T obj = node.getObject();
  21. return obj;
  22. }
  23. }
  24. public Iterator<T> iterator() {
  25. ListIterator<T> iter = new ListIterator<T>();
  26. return iter;
  27. }
  28. private Node<T> head;
  29. public List() {
  30. this.head = new Node<T>();
  31. }
  32. public Node<T> getHead() {
  33. return head;
  34. }
  35. public void setHead(Node<T> head) {
  36. this.head = head;
  37. }
  38. public boolean isEmpty() {
  39. return head.getNext() == null;
  40. }
  41. public void addFirst(T element) {
  42. Node<T> node = new Node<T>();
  43. Node<T> nextNode = head.getNext();
  44. node.setObject(element);
  45. node.setNext(nextNode);
  46. head.setNext(node);
  47. }
  48. public void addLast(T element) {
  49. Node<T> node = new Node<T>();
  50. Node<T> lastNode = head;
  51. while (lastNode.getNext() != null) {
  52. lastNode = lastNode.getNext();
  53. }
  54. lastNode.setNext(node);
  55. node.setNext(null);
  56. node.setObject(element);
  57. }
  58. public Object removeFirst() {
  59. Object solution;
  60. if (isEmpty()) {
  61. solution = null;
  62. }
  63. Node<T> node = head.getNext();
  64. Node<T> nextNode = node.getNext();
  65. solution = node.getObject();
  66. head.setNext(nextNode);
  67. return solution;
  68. }
  69. public Object removeLast() {
  70. Object solution;
  71. if (isEmpty()) {
  72. solution = null;
  73. }
  74. Node<T> beforeLastNode = head;
  75. Node<T> lastNode;
  76. while (beforeLastNode.getNext().getNext() != null) {
  77. beforeLastNode = beforeLastNode.getNext();
  78. }
  79. lastNode = beforeLastNode.getNext();
  80. solution = lastNode.getObject();
  81. beforeLastNode.setNext(null);
  82. return solution;
  83. }
  84. /**
  85. * It does not delete the node, where the element is saved.
  86. *
  87. * @return first element of list
  88. */
  89. public Object getFirstElement() {
  90. return head.getNext().getObject();
  91. }
  92. }

第一个代码块是您提供的List类的翻译。

  1. package einfuehrung.knodenUndListeKopie;
  2. import java.util.Collection;
  3. public class Node<T extends Collection<?>> {
  4. private Node<T> next;
  5. private T object;
  6. public Node() {
  7. }
  8. public Node(Node<T> next, T object) {
  9. this.next = next;
  10. this.object = object;
  11. }
  12. public Node<T> getNext() {
  13. return next;
  14. }
  15. public void setNext(Node<T> next) {
  16. this.next = next;
  17. }
  18. public T getObject() {
  19. return object;
  20. }
  21. public void setObject(T object) {
  22. this.object = object;
  23. }
  24. public int countAllElements() {
  25. int solution;
  26. solution = object.size();
  27. if (this.next != null) {
  28. solution += this.next.countAllElements();
  29. }
  30. return solution;
  31. }
  32. }

第二个代码块是您提供的Node类的翻译。

请注意,我已经删除了一些与问题描述和标题不相关的内容。如果您需要更多帮助或其他翻译,请随时提问。

英文:
  1. package einfuehrung.knodenUndListeKopie;
  2. import java.util.Iterator;
  3. import java.util.NoSuchElementException;
  4. public class List&lt;T&gt; {
  5. private class ListIterator&lt;K&gt; implements Iterator&lt;T&gt; {
  6. private Node&lt;T&gt; node = null;
  7. public ListIterator() {
  8. node = head;
  9. }
  10. @Override
  11. public boolean hasNext() {
  12. return node.getNext() != null;
  13. }
  14. @Override
  15. public T next() {
  16. if (!hasNext()) {
  17. throw new NoSuchElementException();
  18. }
  19. node = node.getNext();
  20. T obj = node.getObject();
  21. return obj;
  22. }
  23. }
  24. public Iterator&lt;T&gt; iterator() {
  25. ListIterator&lt;T&gt; iter = new ListIterator&lt;T&gt;();
  26. return iter;
  27. }
  28. private Node&lt;T&gt; head;
  29. public List() {
  30. this.head = new Node&lt;T&gt;();
  31. }
  32. public Node&lt;T&gt; getHead() {
  33. return head;
  34. }
  35. public void setHead(Node&lt;T&gt; head) {
  36. this.head = head;
  37. }
  38. public boolean isEmpty() {
  39. return head.getNext() == null;
  40. }
  41. public void addFirst(T element) {
  42. Node&lt;T&gt; node = new Node&lt;T&gt;();
  43. Node&lt;T&gt; nextNode = head.getNext();
  44. node.setObject(element);
  45. node.setNext(nextNode);
  46. head.setNext(node);
  47. }
  48. public void addLast(T element) {
  49. Node&lt;T&gt; node = new Node&lt;T&gt;();
  50. Node&lt;T&gt; lastNode = head;
  51. while (lastNode.getNext() != null) {
  52. lastNode = lastNode.getNext();
  53. }
  54. lastNode.setNext(node);
  55. node.setNext(null);
  56. node.setObject(element);
  57. }
  58. public Object removeFirst() {
  59. Object solution;
  60. if (isEmpty()) {
  61. solution = null;
  62. }
  63. Node&lt;T&gt; node = head.getNext();
  64. Node&lt;T&gt; nextNode = node.getNext();
  65. solution = node.getObject();
  66. head.setNext(nextNode);
  67. return solution;
  68. }
  69. public Object removeLast() {
  70. Object solution;
  71. if (isEmpty()) {
  72. solution = null;
  73. }
  74. Node&lt;T&gt; beforeLastNode = head;
  75. Node&lt;T&gt; lastNode;
  76. while (beforeLastNode.getNext().getNext() != null) {
  77. beforeLastNode = beforeLastNode.getNext();
  78. }
  79. lastNode = beforeLastNode.getNext();
  80. solution = lastNode.getObject();
  81. beforeLastNode.setNext(null);
  82. return solution;
  83. }
  84. /**
  85. * It does not delete the node, where the element is saved.
  86. *
  87. * @return first element of list
  88. */
  89. public Object getFirstElement() {
  90. return head.getNext().getObject();
  91. }
  92. }

First above is my List-Class.

  1. package einfuehrung.knodenUndListeKopie;
  2. import java.util.Collection;
  3. public class Node&lt;T extends Collection&lt;?&gt;&gt; {
  4. private Node&lt;T&gt; next;
  5. private T object;
  6. public Node() {
  7. }
  8. public Node(Node&lt;T&gt; next, T object) {
  9. this.next = next;
  10. this.object = object;
  11. }
  12. public Node&lt;T&gt; getNext() {
  13. return next;
  14. }
  15. public void setNext(Node&lt;T&gt; next) {
  16. this.next = next;
  17. }
  18. public T getObject() {
  19. return object;
  20. }
  21. public void setObject(T object) {
  22. this.object = object;
  23. }
  24. public int countAllElements() {
  25. int solution;
  26. solution = object.size();
  27. if (this.next != null) {
  28. solution += this.next.countAllElements();
  29. }
  30. return solution;
  31. }
  32. }

Second Class is my Node-Class.

Problem Description. Everything was fine after i restricted the Parameter T in my Node Class. I had to, because T needed to implement the size-Method. It was necessary for the countAllElements() Method in Node-Class. In my List Class i get the error message : "Type T is not a valide Substitute for the bounded Parameter &lt;T extends Collection&lt;?&gt;&gt; of the type Node&lt;T&gt;. The error message appears everywhere where i use an instance of my object from the type Node&lt;T&gt;.

I hope i did everything Right in this Question by Posting my Code here. Sorry for my case-shift, i live in Germany. I dont know what my Computer does D:.

Edited: Sorry guys, i forgot to Change the title. I adjusted it.

答案1

得分: 0

你目前存在自相矛盾:你说你的 Node 可以包含 List 类中的任何 T,但你的 Node 类表明它们可以包含任何 Collection

所以,你可以选择:

  • 遍历 List 类中所有的 Node&lt;T&gt;,将它们替换为类似 Node&lt;Collection&lt;T&gt;&gt;Node&lt;List&lt;T&gt;&gt; 等。
  • Node 类中移除类型参数的限制,并向 countAllElements 方法提供一个 ToIntFunction&lt;? super T&gt;,以允许你指定如何“计数”一个 T
  1. public int countAllElements(ToIntFunction&lt;? super T&gt; counter) {
  2. int solution = counter.apply(object);
  3. if (this.next != null) {
  4. solution += this.next.countAllElements(counter);
  5. }
  6. return solution;
  7. }
英文:

As it stands, you are contradicting yourself: you are saying that your Nodes can contain any T in your List class, but your Node class says they can contain any Collection.

So, you either need to:

  • Go through all of the Node&lt;T&gt;s in the List class, replacing them with something list Node&lt;Collection&lt;T&gt;&gt;, Node&lt;List&lt;T&gt;&gt; etc

  • Remove the bound on the type parameter in the Node class, and supply a ToIntFunction&lt;? super T&gt; to the countAllElements method, to allow you to say "this is how you 'count' a T":

    1. public int countAllElements(ToIntFunction&lt;? super T&gt; counter) {
    2. int solution = counter.apply(object);
    3. if (this.next != null) {
    4. solution += this.next.countAllElements(counter);
    5. }
    6. return solution;
    7. }

huangapple
  • 本文由 发表于 2020年8月5日 16:33:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/63261317.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定