📜  Java和C++之间的相似之处

📅  最后修改于: 2021-05-30 11:23:12             🧑  作者: Mango

两者都是非常成功且流行的编程语言。尽管两者之间有很多差异,但是有很多相似之处,具体如下:

  1. C++和Java支持面向对象的编程:

    OOP是一种模块化方法,它允许将数据应用到规定的程序区域中,它还提供了可重用性功能来开发生产逻辑,这意味着将更多的精力放在数据上。它支持类和对象。 OOP的功能包括:

    • 继承:一个类的对象可以链接并共享另一个类的对象的某些公共属性的过程。
    • 多态性:允许我们以不同的方式执行单个动作。这是将函数用于多个目的的过程。
    • 抽象:这是代表基本特征而不包含背景细节的行为。
    • 封装:将数据和功能包装到一个单元中。
  2. 它们具有相似的语法:

    C++语法:

    #include& lt; iostream & gt;
    using namespace std;
      
    int main()
    {
        cout& lt;
        <
        "
        Hello World"
        ;
        return 0;
    }
    

    Java语法:

    public class first {
        public static void main(String[] args)
        {
            // prints Hello World
            System.out.println(" Hello World ");
        }
    }
    
  3. 注释语法是相同的

    单行注释和多行注释都写为//…。和 /* …。 */ 分别。

    C++:

    #include 
    using namespace std;
      
    int main()
    { // main() is where program execution begins
        int a = 5, b = 10, sum;
        sum = a + b;
      
        /* This will add the values of a and b
    and will display the output stored in sum */
      
        cout << sum;
        return 0;
    }
    

    Java的:

    public class GFG {
      
        public static void main(String[] args)
        { // main() is where program execution begins
      
            int a = 5, b = 10, sum;
            sum = a + b;
      
            /* This will add the values of a and b
    and will display the output stored in sum */
      
            System.out.println(sum);
        }
    }
    
  4. 循环(如while,for等)和条件语句(如if-else,switch等)是相似的

    C++:

    #include 
    using namespace std;
      
    int main()
    {
        int a = 5, b = 10;
        if (a > b)
            cout << a;
      
        else
            cout << b;
        return 0;
    }
    
    Output: 10

    Java的:

    public class firstjava {
      
        public static void main(String[] args)
        {
            // to display the greater number
      
            int a = 5, b = 10;
            if (a > b)
                System.out.println(a);
      
            else
                System.out.println(b);
        }
    }
    
    Output: 10
  5. 两者具有相同的算术和关系运算符。
    Arithmetic operators such as +, -, *, /
    Relational operators such as >, <, =, != (not equal to)
    
  6. C++和Java程序的执行均从主要函数开始:
    它是程序执行的入口。但是,函数声明不同,但名称相同。

    C++:

    #include& lt; iostream & gt;
    using namespace std;
      
    int main()
    { // main() is where program execution begins
        cout& lt;
        <
        "
        Hello World"
        ;
        return 0;
    }
    

    Java的:

    public class GFG {
        public static void main(String[] args)
        {
            // main() is where program execution begins
            System.out.println(" Hello World ");
        }
    }
    
  7. 它们具有相同的原始数据类型
    这些数据类型包括int,float,char,double等数据类型,但有一些区别,例如Boolean数据类型在Java称为boolean,但在C++中称为bool。
  8. 他们的许多关键字都是相同的
    例子:
    break, continue, char, double, new, public, private, return, static etc. 
  9. 两者都有多线程支持
    两者都允许同时执行多个线程(子进程)以实现多任务。
  10. 应用领域
    C++最适合开发大型软件,例如图书馆管理系统,员工管理系统,旅客预订系统等。
    可以使用Java开发所有这些软件,但除此Java,它最适合开发通信/ Internet应用程序软件。例如:网络协议,Internet程序,网页,Web浏览器等。

学习Java
学习C++

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”