2

我希望你能在这里帮助我,伙计们。我在过去 3 周内一直在做的是尝试显示 3 个变量的内容(1 个包含相应“-”或“+”号的 char 变量以及其他两个包含温度测量值的整数变量)我试图做 id 以在 TEdit 控件中显示这些变量的内容,例如:+ 26.3。就那么简单。

我尝试了几个功能都没有成功,让我告诉你:

(其中 temp_txtBox_Cond 是 TEdit 控件的名称)

temp_txtBox_Cond->Text=(L"%c %i. %i",temp_sign,temp_temp_int,temp_temp_dec,test_buf,n);

temp_txtBox_Cond->Text.printf(L"%c %i. %i",temp_sign,temp_temp_int,temp_temp_dec);

sprintf(test_buf,"%c %i.%i",temp_sign,temp_temp_int,temp_temp_dec);
temp_txtBox_Cond ->Text.sprintf(L"%c %i.%i",temp_sign,temp_temp_int,temp_temp_dec,test_buf);

temp_txtBox_Cond->Text=("%c %i. %i",temp_sign,temp_temp_int,temp_temp_dec);

temp_txtBox_Cond->Text = AnsiString(temp_sign,temp_temp_int,temp_temp_dec);

temp_txtBox_Cond->Text = (AnsiString(temp_sign)+AnsiString(temp_temp_int)+AnsiString    (temp_temp_dec));

String s(temp_sign);
String d(temp_temp_dec);
String i(temp_temp_int);

temp_txtBox_Cond->Text = s+" "+i+"."+d;

没有成功。这非常令人沮丧。

请伙计们需要你的帮助。先谢谢了。


嗯,这有点奇怪,因为上面的大部分功能我得到的是一个0+0.0或者hq3Pˆ15PPhå(这听起来像内存问题)。我来给你展示 :

和 :

temp_txtBox_Cond->Text = (L"%c %i.%i",temp_sign,temp_temp_int,temp_temp_dec,test_buf);

我得到:hq3Pˆ15PPhå

和 :

temp_txtBox_Cond->Text.printf(L"%c %i. %i",temp_sign,temp_temp_int,temp_temp_dec);

我得到 Nada 文本框是空白的

和 :

sprintf(test_buf,"%d. %d",temp_temp_int,temp_temp_dec);
temp_txtBox_Cond->Text =(test_buf,"%c %d. %d",temp_sign,temp_temp_int,temp_temp_dec);`

我得到0。

和 :

temp_txtBox_Cond->Text =("%c %d. %d",temp_sign,temp_temp_int,temp_temp_dec);`

我也得到0。

与:

temp_txtBox_Cond->Text = AnsiString(temp_sign,temp_temp_int,temp_temp_dec): I got +0.0

这些是错误。

嗨,雷米,

好没问题。这是我用来获取 temp_sig、temp_temp_int 和 temp_temp_dec 的代码:

 WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
{    
ikor_msg_id = ikor_id_bld (app_priority, zone, dest_UCP, 0x20, 0x03);
wait_for_msg(h, 0x5200, 500, data);
if (data[0] == 1)
{
temp_sign = '+';
}
else if (data[0] == 0)
{
temp_sign = '-';
}
else
{
temp_sign = '?';
}

temp_temp_int = data[1];
temp_temp_int <<= 8;
temp_temp_int += data[2];
temp_temp_dec = temp_temp_int;
temp_temp_int /= 10;
temp_temp_dec -= (temp_temp_int * 10);
}

在这里我试图显示数据:

void __fastcall TForm1::temp_txtBox_CondChange(TObject *Sender )
{
unsigned long ikor_msg_id = 0;
long ikor_id_bld( long p_temp, long z_temp, long d_temp, int m_temp, int s_temp);
int wait_for_msg(CANHANDLE handle,int id,int timeout,unsigned char *data);
CANHANDLE h;
unsigned char data [8];

/***Here is where i tried all the attempts that I posted ****/

}

我在标题中声明它们的变量:

#ifndef __Variables_Cond__
#define __Variables_Cond__

#ifdef __cplusplus
extern "C" {
#endif



unsigned int temp_temp_int;
unsigned int temp_temp_dec;
unsigned char temp_sign;


#ifdef __cplusplus

} #万一

#endif    
4

2 回答 2

2

我建议如下:

    TCHAR temp_buf[256];
    wsprintf(temp_buf, _T("%c %d.%d"), temp_sign, temp_temp_int, temp_temp_dec);

    temp_txtBox_Cond->Text = temp_buf;
于 2012-06-25T13:35:40.070 回答
0

您得到了错误的结果,因为您的尝试对于您正在尝试的内容是错误的,并且其中大多数源于相同的根本问题 - 您在滥用,运算符。在表达式而不是参数列表中,,运算符执行两边的运算,运算符的结果是右手运算的结果。您,在表达式中将多个操作链接在一起,并期望它们产生实际上没有的结果。

temp_txtBox_Cond->Text = (L"%c %i.%i",temp_sign,temp_temp_int,temp_temp_dec,test_buf);

这实际上与以下内容相同:

L"%c %i.%i"; // no-op
temp_sign; // no-op
temp_temp_int; // no-op
temp_temp_dec; // no-op
temp_txtBox_Cond->Text = test_buf;     

你得到hq3Pˆ15PPhå因为test_buf没有事先初始化的内容。

temp_txtBox_Cond->Text.printf(L"%c %i.%i",temp_sign,temp_temp_int,temp_temp_dec);

这实际上与以下内容相同:

String temp = temp_txtBox_Cond->Text;
L"%c %i. %i"; // no-op
temp_sign; // no-op
temp_temp_int; // no-op
temp_temp_dec; // no-op
temp.printf(temp_temp_dec);     

您得到一个空白结果,因为您根本没有为该Text属性分配任何内容。您正在读取该Text属性,然后调用它返回printf()的 temp String,但是之后您不会将其分配String回该Text属性。

sprintf(test_buf,"%d.%d",temp_temp_int,temp_temp_dec);
temp_txtBox_Cond->Text =(test_buf,"%c %d.%d",temp_sign,temp_temp_int,temp_temp_dec);

这实际上与以下内容相同:

sprintf(test_buf, "%d. %d", temp_temp_int, temp_temp_dec);     
test_buf; // no-op
"%c %d. %d"; // no-op
temp_sign; // no-op
temp_temp_int; // no-op
temp_txtBox_Cond->Text = temp_temp_dec;

你进入"0"Text因为temp_temp_dec是 0 开始(尽管你认为你在调试器中看到了什么)。

temp_txtBox_Cond->Text =("%c %d.%d",temp_sign,temp_temp_int,temp_temp_dec);`

这实际上与以下内容相同:

"%c %d. %d"; // no-op
temp_sign; // no-op
temp_temp_int; // no-op
temp_txtBox_Cond->Text = temp_temp_dec;

结果与上述相同。

temp_txtBox_Cond->Text = AnsiString(temp_sign,temp_temp_int,temp_temp_dec)

这实际上与以下内容相同:

temp_sign; // no-op
temp_temp_int; // no-op
temp_txtBox_Cond->Text = AnsiString(temp_temp_dec);

这将再次导致"0"。您无法使用"+0.0"Text代码。

综上所述,请改用其中之一:

Char temp_sign = L'+'; // note: upper 'C'har = "%c"
int temp_temp_int = 26;
int temp_temp_dec = 3;
temp_txtBox_Cond->Text = String().sprintf(L"%c %i.%i", temp_sign, temp_temp_int, temp_temp_dec); 

.

char temp_sign = '+'; // note: lower 'c'har = "%hc"
int temp_temp_int = 26;
int temp_temp_dec = 3;
temp_txtBox_Cond->Text = String().sprintf(L"%hc %i.%i", temp_sign, temp_temp_int, temp_temp_dec); 

.

Char temp_sign = L'+'; // or lower-case 'c'har, doesn't matter
int temp_temp_int = 26;
int temp_temp_dec = 3;
temp_txtBox_Cond->Text = Format(L"%s %i.%i", ARRAY_OF_CONST(( temp_sign, temp_temp_int, temp_temp_dec )) ); 

.

Char temp_sign = L'+'; // note: upper 'C'har = "%C"
int temp_temp_int = 26;
int temp_temp_dec = 3;
char test_buf[24];
sprintf(test_buf, "%C %i.%i", temp_sign, temp_temp_int, temp_temp_dec); 
temp_txtBox_Cond->Text = test_buf; 

.

char temp_sign = '+'; // note: lower 'c'har = "%c"
int temp_temp_int = 26;
int temp_temp_dec = 3;
char test_buf[24];
sprintf(test_buf, "%c %i.%i", temp_sign, temp_temp_int, temp_temp_dec); 
temp_txtBox_Cond->Text = test_buf; 

.

Char temp_sign = L'+'; // or lower 'c'char, doesn't matter
int temp_temp_int = 26;
int temp_temp_dec = 3;
temp_txtBox_Cond->Text = String(temp_sign) + L" " + String(temp_temp_int) + L"." + String(temp_temp_dec); 
于 2012-06-26T05:34:04.077 回答