标签: java if-statement switch-statement
是否有针对此代码进行优化的解决方案或可以转换为switch-case?
if (str.endsWith("a")){ methodA(str); } else if (str.endsWith("bc")){ methodB(str); } else if (str.endsWith("cs")){ methodC(str); } else if (str.endsWith("dsgsgd")){ methodD(str); }