fork download
  1. // パラメータ
  2.  
  3. public class ChatParam {
  4. public static final int PORT = 40000; // ポート番号:40000+学籍番号の下3桁に変更
  5.  
  6. public static final int MAX_USERS = 5; // 最大参加ユーザ数
  7. public static final int NSIZE = 11; // 名前の最大サイズ
  8. public static final int MSIZE = 80; // 送受信データのサイズ
  9.  
  10. public static final byte JOIN = 1;
  11. public static final byte LEAVE = 2;
  12. public static final byte FULL = 3;
  13. public static final byte MSG = 4;
  14. }
  15.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:3: error: class ChatParam is public, should be declared in a file named ChatParam.java
public class ChatParam {
       ^
1 error
stdout
Standard output is empty