SumClass.java
上传用户:bjlvip
上传日期:2010-02-08
资源大小:744k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. /**
  2.  * This class is designed to be packaged with a COM DLL output format.
  3.  * The class has no standard entry points, other than the constructor.
  4.  * Public methods will be exposed as methods on the default COM interface.
  5.  * @com.register ( clsid=9B3E3B20-5622-11D3-8EF6-00C04F68F506, typelib=9B3E3B21-5622-11D3-8EF6-00C04F68F506 )
  6.  */
  7. public class SumClass implements component.ISum
  8. {
  9. public int Sum(int x, int y)
  10. {
  11. return x + y;
  12. }
  13. }