SAE21_2021/Test.java

22 lines
630 B
Java
Raw Normal View History

2022-04-27 12:04:45 +02:00
public class Test {
public static void main(String[] args) {
2022-05-17 20:53:21 +02:00
new FrameJeu(20,25,10);
2022-04-27 16:16:34 +02:00
}
2022-04-27 12:04:45 +02:00
}
2022-05-10 11:52:26 +02:00
/* Flux de sortie représenté par la classe Output Stream
2022-05-10 15:12:17 +02:00
* Méthodes cruciales : void write(int);
* void flush();
* Flux d'entrée général représenté par Input Stream
* Méthodes importantes : int read();
* int available();
* long skip (long);
* boolean markSupported();
* void mark(int);
* void reset();
2022-05-17 20:53:21 +02:00
*
* BufferedReader
* BufferedWriter
2022-05-10 11:52:26 +02:00
*/