我正在尝试使用mingw(gcc 4.9.3)在Windows 8上编译套接字编程示例。当使用ipv6地址的完整表达时 WCHAR IPAddr [256] = L“0:0:0:0:0:0:0:1”;它工作正常,但使用WCHAR IPAddr [256] = L“:: 1”;返回错误代码10022。
TextView step[] = new TextView[4];
step[0] = (TextView) findViewById(R.id.textview1);
step[1] = (TextView) findViewById(R.id.textview2);
step[2] = (TextView) findViewById(R.id.textview3);
step[3] = (TextView) findViewById(R.id.textview4);
Resources res = getResources();
String[] steps = res.getStringArray(R.array.dance_steps);
for(int i = 0 ; i < 4 ; i++){
step[i].setText(steps[i]);
}