我对研究和论文感兴趣,详细探讨面向对象语言中不同开发实践的证据。我特别关注衡量生产力或考虑现代IDE影响的研究。您能推荐一些好的资源吗?最近在这个领域做了多少工作?
In C#, I know that I can overload the constructor for a class by specifying it in the body of the class: public class MyClass() { public MyClass(String s) { ... } } This overrides the default ...