C++函数与java函数对比--对象

4 篇文章 0 订阅

 Android源码底层的代码实现文件有.h、.c、.cpp后缀名文件,它们分别是c、c++程序代码文件和头文件。下面就以一个极其简单的小例子来对比理解它们之间关系。

C++是面向对象,JAVA是一切皆对象!

  1. 在java中,假如我要实现一个函数getHeight(int height)返回的是传入的height

     1). 在A.java文件中声明和定义函数的实现,代码如下:

         

[java]  view plain  copy
  1. public class A   
  2. {  
  3.   
  4.     public int getHeight(int height)  
  5.     {  
  6.         return height;  
  7.     }  
  8. }  
     2).在B.java中提供主入口函数,然后调用A类中的函数getHeight,代码如下:

[java]  view plain  copy
  1. public class B   
  2. {  
  3.   
  4.     /** 
  5.      * @param args 
  6.      */  
  7.     public static void main(String[] args)   
  8.     {  
  9.         // TODO Auto-generated method stub  
  10.   
  11.         A a = new A();  
  12.         a.getHeight(180);  
  13.     }  
  14.   
  15. }  

   2.对比在C++中实现同样的函数:

     1). 在a.h文件中声明类和函数,实现如下:

[cpp]  view plain  copy
  1. class A  
  2. {  
  3. pubic:  
  4.       int get_height(int height);  
  5. };  

   2).在 a.cpp文件中的进行函数的定义,代码如下:

[cpp]  view plain  copy
  1. #include "a.h"  
  2.   
  3. int A::get_height(int height)  
  4. {  
  5.     return height;  
  6. }  

  3).在 main.cpp文件中实现调用函数get_height(int height),代码如下:

[cpp]  view plain  copy
  1. #include "a.h"  
  2.   
  3. void main()  
  4. {  
  5.       A a;  
  6.       a.get_height(180);  
  7. }  
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值