在 JDA 中,我不断收到错误“不推荐使用构造函数 JDABuilder(AccountType)”
package diaduck.Playground;
import net.dv8tion.jda.api.AccountType;
import net.dv8tion.jda.api.JDA;
import net.dv8tion.jda.api.JDABuilder;
public class Main {
public static JDA jda;
public static void main(String[] args) {
jda = new JDABuilder(AccountType.BOT).setToken("**************************").buildAsync();
}
}
答案 0 :(得分:0)
这个构造函数已经被弃用一年多了。文档会准确地告诉您为什么以及需要做什么。事实上,这个构造函数甚至在最新版本的 JDA 上都不存在了。
迁移指南告诉您改用新的工厂方法。在 GitHub
上阅读更多