j2me中如何使用Comparable接口
嗨,朋友们,我将在 j2me 中使用 Comparable 接口,但它在 Comparable 接口上显示错误,需要编写哪个导入语句或如何从 j2me 类中删除此错误。请帮助我
public class DFTpair implements Comparable{
在可比较上显示红线 谢谢
Hey hi friends I am going to use Comparable interface in j2me but it showing error on line Comparable interface, which import statement need to be write or how to remove this error from j2me class. please help me
public class DFTpair implements Comparable{
its showing red line on Comparable
Thnks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想在 J2ME 平台上进行开发,最好获取您需要的 API 文档。最流行的配置文件和配置(MIDP 和 CLDC 的所有版本)没有此接口。所以如果你想要这个接口你必须自己创建它。
你需要 Comparable 来做什么?
If you want to develop on J2ME platform it's good idea to get documentation for API you need. The most popular profiles and configurations (all versions of MIDP and CLDC) don't have this interface. So if you want this interface you have to create it by yourself.
And what do you need Comparable for?