pr17500.java

来自「gcc的组建」· Java 代码 · 共 29 行

JAVA
29
字号
// gcj had a problem compiling code where two anonymous classes had// captured constructor arguments of the same type but with different// names.public class pr17500{  public Object m1 (final Object one)  {    return new Comparable()      {	public int compareTo(Object other)	{	  return one == other ? 0 : 1;	}      };  }  public Object m2 (final Object two)  {    return new Comparable()      {	public int compareTo(Object other)	{	  return two == other ? 0 : 1;	}      };  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?