markdown 修复原始类型警告

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 修复原始类型警告相关的知识,希望对你有一定的参考价值。

*Source:* [StackOverFlow](https://stackoverflow.com/a/37604348)

**Answer:**

You are using a raw type in the method declaration. Change,

```static void myPush (Stack myStack, int b)```

to

```static void myPush (Stack<Integer> myStack, int b)```

**Alternatively,** make the method generic on *type* `T` like:

```java
static <T> void myPush(Stack<T> myStack, T b) {
    myStack.push(b);
    System.out.println("inserted element is: " + b);
    System.out.println("this is on the stack: " + myStack);
}
```

以上是关于markdown 修复原始类型警告的主要内容,如果未能解决你的问题,请参考以下文章

在 C 中,如何修复此警告:格式“%s”需要“char *”类型的参数,但参数 3 的类型为“char (*)[100]

从字符串 => 类型的映射推断反应道具类型时修复打字稿警告

泛型 - 正确处理原始类型警告:

有没有办法修复 stdint 类型的格式说明符警告?

方法引用导致原始类型编译器警告,但lambda不会

ScalaStyle 报告的自动修复警告