我对Java有点陌生,我学到了一些有关Java的知识,但是我有一个问题。 我目前正在制作Minecraft插件,但这无关紧要。 (我认为) 如何使它具有自定义类型?抱歉,我无法真正解释。我会告诉你我的意思。
// I have a static void for getting items
public static void(CustomItemTypes type) {
// Do Stuff
}
// So I have that "CustomItemTypes" thing, I want to make a custom thing of that type.
// So like not "String" or "Integer" but my custom type. Sorry I am really bad at
// explaining stuff. :/
我该怎么做?谢谢您的回答! <3
答案 0 :(得分:0)
我认为您想要的是仿制药
public class test{
public static void(CustomItemTypes<YourCustomType> type) {
}
}
public class CustomItemTypes<T>{
}