如何在 if 语句中比较二维数组值。我的数组值是这样的数字 12,3,23,,31 等我想比较edittext中的每两个值
下面是我在edittext中获取二维数组的代码
public static String[][] a = new String[6][7];
e00.setText("" + a[0][0]);
e01.setText("" + a[0][1]);
e02.setText("" + a[0][2]);
e03.setText("" + a[0][3]);
e04.setText("" + a[0][4]);
e05.setText("" + a[0][5]);
e06.setText("" + a[0][6]);
如何比较哪个值更大
if((a[0][0]>(a[0][0])
{
mMonth=mMonth-1;
}