安装完成后,JDK默认到目录C:\Program Files\Java\下,此目录下读者可以发现一个一个jdk目录和一个jre目录,如图1.8所示。 图1.8 JDK和JRE 打开jdk目录,如图1.9所示。 图1.9 JDK目录结构 JDK9的目录与之前JDK8发生了一些变化。 bin目录:bin是二进制binary缩写,表示编译后的二进制可执行文件;JDK的bin目录下...
using System; namespace CS01 { class Program { public static void swap(ref int x, ref int y) { int temp = x; x = y; y = temp; } public static void Main (string[] args) { int a = 5, b = 10; swap (ref a, ref b); // a = 10, b = 5; Console.WriteLine ("a = ...
1importjava.io.DataInputStream;2importjava.io.DataOutputStream;3importjava.io.File;4importjava.io.FileInputStream;5importjava.io.IOException;6importjava.net.ServerSocket;7importjava.net.Socket;8importjava.util.logging.Level;9importjava.util.logging.Logger;1011publicclassServer {121314privatestaticServe...
importjava.util.Scanner;publicclassHappyProgram{publicstaticvoidmain(String args[]){Scannerinput_a=newScanner(System.in); System.out.print("Enter a number: ");intYourNumber=input_a.nextInt();if(YourNumber >10) System.out.println("Your number is greater than ten") ;if(YourNumber <=10) S...
MyObject objectFromDisk = (MyObject)ois.readObject(); System.out.println(); ois.close(); } } class MyObject implements Serializable{ public String name; //重写readObject()方法 private void readObject(java.io.ObjectInputStream in) throws IOException, ClassNotFoundException{ ...
Program Counter Register 程序计数器(寄存器) 作用 是记住下一条 jvm 指令的执行地址,也就是线程当前要执行的指令地址 特点 线程私有 不会存在内存溢出(唯一) 虚拟机栈 定义 Java Virtual Machine Stacks (Java 虚拟机栈) 每个线程运行时所需要的内存,称为虚拟机栈 每个栈由多个栈帧(Frame)组成,对应着每次方法...
-classpath <path> Specify where to find user class files and annotation processors -cp <path> Specify where to find user class files and annotation processors -sourcepath <path> Specify where to find input source files -bootclasspath <path> Override location of bootstrap class files ...
用于运行桌面应用程序的 Java 面向使用台式机和笔记本电脑的最终用户 下载适用于台式机的 Java Java 是什么 最终用户帮助 开发人员和企业管理员 来自Java 管理者 Oracle 的免费 Java 开发工具包 (JDK) 下载和资源 开发人员下载 开发人员资源 企业资源 OpenJDK 抢先体验版...
Essential Java Classes– Lessons on exceptions, basic input/output, concurrency, regular expressions, and the platform environment. Building On The Foundation Ready to dive deeper into the technology? See the following topics: Collections– Lessons on using and extending the Java Collections Framework....
C:\Program Files\Java\jre1.8.0_20The version specific directory naming is intentional and it does not indicate that the JRE install is static.As with the earlier releases, static JRE install is performed only if STATIC=1 option is passed (via command line or config file) by the user....