哪个IDE可以通过继承从class1对象中检测method1?
我正在开始 CakePHP,但我需要 IDE 来检测具有 2 级扩展的类的方法。
我需要 IDE 来检测 class1 对象中的 method1。
I am beginning CakePHP, but I need IDE for detect method of class that have 2 level extends.
I need IDE that detect method1 from class1 object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当某个方法重写另一个类中的方法或被另一个类中的方法重写时,NetBeans 会用指示符替换方法声明的行号。
单击它会将您带到另一个类中指定方法声明的行。
NetBeans replaces the line number of method declarations with an indicator when a method is either overriding a method in another class or overridden by a method in another class.
Clicking it takes you to the line of the indicated method declaration in the other class.
请参阅此处和此处,了解一些关于获取Netbeans 可以很好地识别关系。
See here and here for some good tips on getting Netbeans to recognise relations nicely.