java learning record day01-02

Von Neumann architecture

[External link image transfer failed. The source site may have an anti-leeching mechanism. It is recommended to save the image and upload it directly (img-3NIKnIry-1617694873040) (C:\Users\hello world\Desktop\Markdown Learning\Von Neumann Architecture .png)]

computer software

Computer software is divided into system software and application software according to its functions.

system software

如 Windows,Linux,Mac,Unix,Android,iOS

application

QQ, WeChat, various games, WPS, etc.

Commonly used shortcut keys

  1. Ctrl +c select copy

  2. Ctrl+v Paste

  3. Ctrl +A Select all

  4. Ctrl+x cut

  5. Ctrl+z Undo

  6. Ctrl +s save

  7. Alt+f4 close window

  8. shift +delete permanently delete

  9. Windows +r opens a command line window

  10. Ctrl +shift +esc open task manager

Basic DOS commands

  1. Windows+R Open cmd command prompt
# 盘符切换 E :(英文的冒号)
# dir 查找盘下目录
# 切换目录 cd E
#回到主目录 cd..
# 进入目录 cd+进入目录的名字(可使用首字母+tab键)
# 清理屏幕 cls (clean screen) 
# 退出终端 exit
# 查看电脑IP ipconfig
# 创建文件 md +名字
# 删除 del
# 删除文件夹 rd

high level language

It can be roughly divided into two categories, process-oriented and object-oriented.

C language is a typical process-oriented language, while C++ and Java are object-oriented languages.

Java

simplicity

Object-oriented (everything is an object) simulates human thinking

Portability (cross-platform) write once, run anywhere because of jvm (virtual machine)

High performance (efficiency is basically close to c++)

Distributed (processing tcp/ip protocol, methods can be called through the network)

Dynamic

Multithreading

Security (anti-virus, anti-tampering)

Robustness

Guess you like

Origin blog.csdn.net/qq_44794782/article/details/115462452