博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C++ and Java Syntax Differences Cheat Sheet
阅读量:6212 次
发布时间:2019-06-21

本文共 5487 字,大约阅读时间需要 18 分钟。

First, two big things--the main function and how to compile it, followed by lots of little differences.

main function

C++

// free-floating function int main( int argc, char* argv[]) { printf( "Hello, world" ); }

Java

// every function must be part of a class; the main function for a particular // class file is invoked when java 
is run (so you can have one // main function per class--useful for writing unit tests for a class) class HelloWorld { public static void main(String args[]) { System.out.println( "Hello, World" ); } }

Compiling

C++

// compile as g++ foo.cc -o outfile // run with ./outfile

Java

// compile classes in foo.java to 
.class javac foo.java // run by invoking static main method in
java

Comments

Same in both languages (// and /* */ both work)

Class declarations

Almost the same, but Java does not require a semicolon

C++

class Bar {};

Java

class Bar {}

Method declarations

Same, except that in Java, must always be part of a class, and may prefix with public/private/protected

Constructors and destructors

Constructor has same syntax in both (name of the class), Java has no exact equivalent of the destructor

Static member functions and variables

Same as method declarations, but Java provides 
static initialization blocks
 to initialize static variables (instead of putting a definition in a source code file):
class Foo { static private int x; // static initialization block { x = 5; } }

Scoping static methods and namespaces

C++

If you have a class and wish to refer to a static method, you use the form Class::method.
class MyClass { public: static doStuff(); }; // now it's used like this MyClass::doStuff();

Java

All scoping in Java uses the . again, just like accessing fields of a class, so it's a bit more regular:
class MyClass { public static doStuff() { // do stuff } } // now it's used like this MyClass.doStuff();

Object declarations

C++

// on the stack myClass x; // or on the heap myClass *x = new myClass;

Java

// always allocated on the heap (also, always need parens for constructor) myClass x = new myClass();

Accessing fields of objects

C++

If you're using a stack-based object, you access its fields with a dot:
myClass x; x.my_field; // ok
But you use the arrow operator (->) to access fields of a class when working with a pointer:
myClass x = new MyClass(); x->my_field; // ok

Java

You always work with references (which are similar to pointers--see the next section), so you always use a dot:
myClass x = new MyClass(); x.my_field; // ok

References vs. pointers

C++

// references are immutable, use pointers for more flexibility int bar = 7, qux = 6; int& foo = bar;

Java

// references are mutable and store addresses only to objects; there are // no raw pointers myClass x; x.foo(); // error, x is a null ``pointer'' // note that you always use . to access a field

Inheritance

C++

class Foo : public Bar { ... };

Java

class Foo extends Bar { ... }

Protection levels (abstraction barriers)

C++

public: void foo(); void bar();

Java

public void foo(); public void bar();

Virtual functions

C++

virtual int foo(); // or, non-virtually as simply int foo();

Java

// functions are virtual by default; use final to prevent overriding int foo(); // or, final int foo();

Abstract classes

C++

// just need to include a pure virtual function class Bar { public: virtual void foo() = 0; };

Java

// syntax allows you to be explicit! abstract class Bar { public abstract void foo(); } // or you might even want to specify an interface interface Bar { public void foo(); } // and later, have a class implement the interface: class Chocolate implements Bar { public void foo() { /* do something */ } }

Memory management

Roughly the same--
new
 allocates, but no 
delete
 in Java since it has garbage collection.

NULL vs. null

C++

// initialize pointer to NULL int *x = NULL;

Java

// the compiler will catch the use of uninitialized references, but if you // need to initialize a reference so it's known to be invalid, assign null myClass x = null;

Booleans

Java is a bit more verbose: you must write boolean instead of merely bool.

C++

bool foo;

Java

boolean foo;

Const-ness

C++

const int x = 7;

Java

final int x = 7;

Throw Spec

First, Java enforce throw specs at compile time--you must document if your method can throw an exception

C++

int foo() throw (IOException)

Java

int foo() throws IOException

Arrays

C++

int x[10]; // or int *x = new x[10]; // use x, then reclaim memory delete[] x;

Java

int[] x = new int[10]; // use x, memory reclaimed by the garbage collector or returned to the // system at the end of the program's lifetime

Collections and Iteration

C++

Iterators are members of classes. The start of a range is <container>.begin(), and the end is <container>.end(). Advance using ++ operator, and access using *.
vector myVec; for ( vector
::iterator itr = myVec.begin(); itr != myVec.end(); ++itr ) { cout << *itr; }

Java

Iterator is just an interface. The start of the range is <collection>.iterator, and you check to see if you're at the end with itr.hasNext(). You get the next element using itr.next() (a combination of using ++ and * in C++).
ArrayList myArrayList = new ArrayList(); Iterator itr = myArrayList.iterator(); while ( itr.hasNext() ) { System.out.println( itr.next() ); } // or, in Java 5 ArrayList myArrayList = new ArrayList(); for( Object o : myArrayList ) { System.out.println( o ); }

Templates

This is still being to be added. See 
 for a good introduction.

转载地址:http://uidja.baihongyu.com/

你可能感兴趣的文章
配置codis-dashboard
查看>>
Cesium之3D拉伸显示行政区
查看>>
响应式编程的实践
查看>>
对OC中property的一点理解
查看>>
MP4大文件虚拟HLS分片技术,避免点播服务器的文件碎片
查看>>
spring boot项目Intellij 打包
查看>>
UNIX域套接字编程和socketpair 函数
查看>>
[LeetCode] Set Intersection Size At Least Two 设置交集大小至少为2
查看>>
最短的计算大数乘法的c程序
查看>>
BZOJ1101: [POI2007]Zap(莫比乌斯反演)
查看>>
javaCompileOptions { annotationProcessorOptions { includeCompileClasspath = true } }
查看>>
Maven update project...后jdk变成1.5,update project后jdk版本改变
查看>>
Android 关于BottomDialogSheet 与Layout擦出爱的火花?
查看>>
【docker】启动docker连接数据库 出现FATAL: password authentucation failed for user "homestatead"问题...
查看>>
python二维数组初始化
查看>>
【Android应用开发技术:用户界面】布局管理器
查看>>
2 salt-masterless架构
查看>>
C# 线程池ThreadPool的用法简析
查看>>
eclipse 如何修改maven插件本地仓库jar包默认存储位置
查看>>
Zookeeper浏览器工具和Eclipse插件
查看>>