码迷,mamicode.com
首页 > 其他好文 > 详细

程序开发中的名词定义

时间:2017-09-14 16:33:22      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:方法   def   程序开发   变量   col   oid   int   class   fun   

变量 Variable

常量 Constant

//C++
int a; //Variable
const int b; //Constant
//Java
private Integer a; //Variable
private static final b; //Constant
private static const c; //保留字,不推荐使用

 

函数 Function

方法 Method

声明 Declaration

定义 Definition

//C++
class Foo{

public:
    //Function
    void function(); //Declaration
}

void Foo::function(){ //Definition
    ;
}
//Java
public class Foo{
    //Method
    public void method{ //Definition
            ;
    }

 

继承 Inheritance

实现 Implements

扩展 extends

//C++
class Child : public Parents{ // Inheritance
    int member;
}
//Java 
pubic class A extends BaseClass{ // extends
    public void execute(){
        ;
    }
}

public class B implements InterfaceClass{ //Implements
    public void execute(){
        ;
    }
}
    

 

程序开发中的名词定义

标签:方法   def   程序开发   变量   col   oid   int   class   fun   

原文地址:http://www.cnblogs.com/liutianchen/p/7514290.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!