An orca's tech blogs and her life

朝日が見えてきた 弱音はもう吐かない

Git personal handbook

Git stores everything in its database not by file name but by the hash value of its contents. **Three states of GIT: ** modified, staged and committed modified means that you’ve changed the file but have not committed it to your database yet. staged means that you have marked a modified f...

Java interface

接口(英文:Interface),在JAVA编程语言中是一个抽象类型,是抽象方法的集合,接口通常以interface来声明。一个类通过继承接口的方式,从而来继承接口的抽象方法。 接口并不是类,编写接口的方式和类很相似,但是它们属于不同的概念。类描述对象的属性和方法。接口则包含类要实现的方法。 除非实现接口的类是抽象类,否则该类要定义接口中的所有方法。 接口无法被实例化,但是可以被实现。...

Java Exception

除了RuntimeException及其子类以外,其他的Exception类及其子类都属于可查异常。这种异常的特点是Java编译器会检查它,也就是说,当程序中可能出现这类异常,要么用try-catch语句捕获它,要么用throws子句声明抛出它,否则编译不会通过。 运行时异常:RuntimeException及其子类 非运行时异常:除RuntimeException之外的 1 2 ...

TP: programmation C

project scolaire pour la bonne compréhension des détails de langage C

Part 1 Compilation, structures de contrôle, opérations sur les types, opérations bits-à-bits Types entiers, casts, et promotion Before we start, here’s the format of printf() that might be usefu...

C++复合类型声明

引用 指针 const限定符

引用 引用必须被初始化,且引用只能绑定在对象上。 1 2 int &ref;//错误:引用必须被初始化 int &ref1=0;//错误:引用必须绑定在对象上而不是字面值或表达式上 引用本身不是对象,因此不存在引用的引用,也不存在引用的指针。 指针 如果一句话中定义了多个指针,每个变量名前面都要有* int *p1,p2;//p1是指针,p2是int int *...

Outils utils pour démarrer Linux

gestionnaire de fichier, droits d'accès et autres

1.Commandes de base - gestionnaire de fichier cp(copy) Copy a fiche or directory 1 2 3 4 5 6 7 cp [OPTION]… [-T] SOURCE DEST cp [OPTION]… SOURCE… DIRECTORY cp [OPTION]… -t DIRECTORY SOURCE… ...