最初の引数が整数で、残りの 3 つが浮動小数点数であるいくつかのコマンドライン引数を取ることになっている c++ でプログラムを書きました。それを処理するコードの部分は次のようになります。
_tmain(__in int argc, __in PZPWSTR argv)
{
USHORT X, Y, Z, ZR, XR; // Position of several axes
JOYSTICK_POSITION iReport; // The structure that holds the full position data
BYTE id=1; // ID of the target vjoy device (Default is 1)
UINT iInterface=1; // Default target vJoy device
BOOL ContinuousPOV=FALSE; // Continuous POV hat (or 4-direction POV Hat)
int count=0;
DOUBLE Xr, Yr, Zr;
// Get the ID of the target vJoy device
if (argc>1 && wcslen(argv[1]))
sscanf_s((char *)(argv[1]), "%d", &iInterface);
sscanf_s((char *)(argv[2]), "%d", &Xr);
sscanf_s((char *)(argv[3]), "%d", &Yr);
sscanf_s((char *)(argv[4]), "%d", &Zr);
_tprintf("Acquired: X %d\nY %d\nZ %d\n", Xr, Yr, Zr);
the rest of the code ...}
私の問題は、次のように記述してコマンドラインでプログラムを呼び出すときです
name.exe 1 15 16 17
私は Xr = 15 を取得しますが、Zr = 16 と Yr は一見ランダムな巨大な負の数です。
これはおそらく非常に基本的なエラーであることはわかっていますが、それが何であったかを見つけることができませんでした。提案をありがとう。