C Programming vs. Java Programming
| Thing | C | Java |
|---|---|---|
| type of language | function oriented | object oriented |
| basic programming unit | function | class = ADT |
| portability of source code | possible with discipline | yes |
| portability of compiled code | no, recompile for each architecture | yes, bytecode is "write once, run anywhere" |
| security | limited | built-in to language |
| compilation | gcc hello.c creates machine language code | javac Hello.java creates Java virtual machine language bytecode |
| linking in the Math library | gcc -lm calculate.c | no special flags needed |
| joint compilation | gcc main.c helper1.c helper2.c | javac Main.java - any dependent files are automatically re-compiled if needed |
| execution | a.out loads and executes program | java Hello interprets byte code |
| hello, world | #include<stdio.h> int main(void) { printf("Hello\n"); return 0; } |
public class HelloWorld { public static void main(String[] args) { System.out.println("Hello"); } } |
| integer types | int usually 32 bit 2's complement; long usually 32 bit 2's complement |
int is 32 bit 2's complement; long is 64 bit 2's complement |
| floating point types | float usually 32 bit; double usually 64 bit |
float is 32 bit IEEE 754 binary floating point; double is 64 bit IEEE 754 |
| boolean type | use int: 0 for false, nonzero for true | boolean is its own type - stores value true or false |
| character type | char is usually 8 bit ASCII | char is 16 bit UNICODE |
| for loops | for (i = 0; i < N; i++) | for (int i = 0; i < N; i++) |
| array declarations | int *a = malloc(N * sizeof(*a)); | int[] a = new int[N]; |
| array size | arrays don't know their own size | a.length |
| strings | '\0'-terminated character array | built-in immutable String data type |
| accessing a library | #include <stdio.h> | import java.io.File; |
| accessing a library function | #include "math.h" x = sqrt(2.2); all function and variables names are global |
x = Math.sqrt(2.2); functions have different namespaces |
| printing to standard output | printf("sum = %d", x); | System.out.println("sum = " + x); |
| formatted printing | printf("avg = %3.2f", avg); | System.out.printf("avg = %3.2f", avg) |
| reading from stdin | scanf("%d", &x); | Java library support, but easier to use our library int x = StdIn.readInt(); |
| memory address | pointer | reference |
| manipulating pointers | *, &, + | no direct manipulation permitted |
| functions | int max(int a, int b) | public static int max(int a, int b) |
| pass-by-value | primitive data types, structs, and pointers are passed by value; array decays to pointer | all primitive data types and references (which includes arrays), are passed by value |
| defining a data structure | struct | class - key difference is language support for defining methods to manipulate data |
| accessing a data structure | a.numerator for elements | a.numerator for instance variables, c = a.plus(b) for methods |
| pointer chasing | x->left->right | x.left.right |
| allocating memory | malloc | new |
| de-allocating memory | free | automatic garbage collection |
| memory allocation of data structures and arrays | heap, stack, data, or bss | heap |
| buffer overflow | segmentation fault, core dump, unpredicatable program | checked run-time error exception |
| declaring constants | const and #define | final |
| variable auto-initialization | not guaranteed | instance variables (and array elements) initialized to 0, null, or false, compile-time error to access uninitialized variables |
| data hiding | opaque pointers and static | private |
| interface method | non-static function | public method |
| data type for generic item | void * | Object |
| casting | anything goes | checked exception at run-time or compile-time |
| demotions | automatic, but might lose precision | must explicitly cast, e.g., to convert from long to int |
| polymorphism | union | inheritence |
| overloading | no | yes for methods, no for operators |
| graphics | use external libraries | Java library support, use our standard drawing library |
| null | NULL | null |
| enumeration | enum | typesafe enum |
| preprocessor | yes | no |
| variable declaration | at beginning of a block | before you use it |
| variable naming conventions | sum_of_squares | sumOfSquares |
| commenting | /* */ | /* */ or // |
| file naming conventions | stack.c, stack.h | Stack.java - file name matches name of class |
| callbacks | pointers to global functions | use interfaces for commmand dispatching |
| variable number of arguments | varargs | String ... |
| assertions | assert | assert |
| exit and return value to OS | exit(1) | System.exit(1) |
C Programming vs. Java Programming的更多相关文章
- Java Programming Language Enhancements
引用:Java Programming Language Enhancements Java Programming Language Enhancements Enhancements in Jav ...
- Java Programming Test Question 3
import java.util.HashSet; public class JPTQuestion3 { public static void main(String[] args) { HashS ...
- Java Programming Test Question 2
public class JPTQuestion2 { public static void main(String[] args) { String s3 = "JournalDev&qu ...
- 文本信息“welcome to java programming!”
import javax.swing.JOptionPanepublic class welcome {public static void main(string[] arg){JOptionPan ...
- Java programming language compiler
https://docs.oracle.com/javase/7/docs/technotes/tools/windows/javac.html\ javac - Java programming l ...
- Parallel Programming AND Asynchronous Programming
https://blogs.oracle.com/dave/ Java Memory Model...and the pragmatics of itAleksey Shipilevaleksey.s ...
- Java Programming Guidelines
This appendix contains suggestions to help guide you in performing low-level program design and in w ...
- iOS运行时编程(Runtime Programming)和Java的反射机制对比
运行时进行编程,类似Java的反射.运行时编程和Java反射的对比如下: 1.相同点 都可以实现的功能:获取类信息.属性设置获取.类的动态加载(NSClassFromString(@“clas ...
- Fast Intro To Java Programming (2)
Java局部变量 局部变量声明在方法.构造方法或者语句块中: 局部变量在方法.构造方法.或者语句块被执行的时候创建,当它们执行完成后,变量将会被销毁: 访问修饰符不能用于局部变量: 局部变量只在声明它 ...
随机推荐
- JavaScrip t对象和 JSON 数据格式转换
<script> //定义一个js对象 var person = { firstName: "John", lastName: "Doe", age ...
- LockSupport 阻塞原语
LockSupport是用来创建锁和其他同步类的基本线程阻塞原语. LockSupport中的park() 和 unpark() 的作用分别是阻塞线程和解除阻塞线程,而且park()和unpark() ...
- js设计模式总结4
链模式 链模式:通过在对象方法中将当前对象返回,实现对同一个对象多个方法的链式调用,从而简化多次调用该对象多个方法时的对该对象的多次引用. 具体不多说:主要是方法最后return this; 委托模式 ...
- 我进行jvm内存调优的一些记录
jvm内存调优的一些记录 java内存调优的方法和过程 可以使用 jmap -heap pid号 查看,例如pid是9300,执行的结果可能是这样的. root@ubuntu:~# jmap -hea ...
- 【C#设计模式-抽象工厂模式】
一.抽象工厂模式的定义: 为创建一组相关或相互依赖的对象提供一个接口,而且无需指定他们的具体类. 二.抽象工厂模式的结构: 抽象工厂模式是所有形态的工厂模式中最为抽象和最具一般性的一种形态.抽象工厂模 ...
- JUC源码1-原子量
什么是原子量,原子量就是一次操作,要么成功,要么失败.比如java中的i++ 或i-- , 不具备原子性,每次读取的值都是不一样的,探究其原因,x86体系中,他的总线是32位的,i++的操作指令必须是 ...
- [日常] Go语言圣经--并发的循环习题
练习 8.4: 修改reverb2服务器,在每一个连接中使用sync.WaitGroup来计数活跃的echo goroutine.当计数减为零时,关闭TCP连接的写入,像练习8.3中一样.验证一下你的 ...
- 还是畅通工程(hdu1233)并查集应用
还是畅通工程 Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Sub ...
- mybaits模糊查询使用<bind>标签
<select id="selectBlogsLike" resultType="Blog"> <bind name="patter ...
- 在微信小程序中引入 Iconfont 阿里巴巴图标库
小程序的代码包不能超过4M,为了压缩代码包的大小,可以通过第三方链接引入图标资源 Iconfont 无疑是最常用的第三方图标库,这里介绍一下在微信小程序引入 Iconfont 的方法 一.下载图标 首 ...