gpt4 book ai didi

c# - Windows 窗体 C#,返回字符串数组始终为空

转载 作者:行者123 更新时间:2023-12-02 01:38:39 25 4
gpt4 key购买 nike

我有一个处理串行端口通信的应用程序,我有一个“coms-handler”类,它基本上处理所有数据接收/发送,并将解析的数据传递到我的表单,但是,虽然我能够通过 double 、字符串、整数和串行端口,我无法传递 string[] 数组,由于某种原因它总是显示为空。

这是 coms-handler 类中的扫描方法,使用 BleuIO:

internal string[] scanBleu(int scanTime)
{
//returns array of found devices.
string[] devices = new string[] { };

bleuInBuffer.Clear();
//Scan
bleuPort.WriteLine("AT+CENTRAL\r\n");
Thread.Sleep(100);
bleuPort.WriteLine("AT+GAPSCAN=" + scanTime + "\r\n"); //Scan for x-seconds
Thread.Sleep(1000 * scanTime);//Sleep while scanning, disabling button for scan time
for (int i = 0; i < bleuInBuffer.Count; i++)
{
if (bleuInBuffer[i].Contains("Device"))
{
devices.Append(bleuInBuffer[i].ToString());
Console.WriteLine("Appending device: " + bleuInBuffer[i]);
}
}
devices.Append("Hello this is a test"); //NOT EVEN THIS IS APPENDED!, RETURNED DEVICES IS ALWAYS SIZE 0
Thread.Sleep(50); //BREAK POINT SET UP HERE!
return devices;
}

我尝试在 Thread.Sleep 行中添加一个断点,并且当时(注意这是在我运行 Append("hello...") 行之后,所以它应该至少有 1 个组件,但是根据显示设备的数据具有 {string[0]} 类型 string[] 的值。
另请注意,“Console.WriteLine("Appending device...") 行在我的控制台上打印了 40 次(因此找到了 40 个设备)

现在,在我的表单上,我有以下代码来调用它:

private void scanBleu_Click(object sender, EventArgs e)
{
bleuComboBox.Enabled = false;
connect2BleuBtn.Enabled = false;
if (dataHandler.isBleuConnected)
{
string[] devicesFound = dataHandler.scanBleu(bLEScanTime);
Thread.Sleep((1000 * bLEScanTime) + 25);
if (devicesFound.Length != 0)
{
bleuComboBox.Items.Clear();
foreach (string device in devicesFound)
{
if (device.Contains("CMT")) //filters out for only the device we want
{
bleuComboBox.Items.Add(device);
}
}
updateBleuScanBtn();
}
bLEScanTime++;
bleuComboBox.Enabled = true;
connect2BleuBtn.Enabled = true;
return;
}
populateBleuCBox(dataHandler.getPortList());
connect2BleuBtn.Enabled = true;
bleuComboBox.Enabled = true;
}

这是我的控制台输出的(一些),以便您可以看到附加了一些设备:

SCAN COMPLETE

Appending device:
[01] Device: [1]6F:4C:F2:A8:FE:FA RSSI: -74

Appending device:
[02] Device: [1]3D:D1:56:D9:5A:60 RSSI: -75

Appending device:
[03] Device: [1]23:C1:4A:71:07:FC RSSI: -76

Appending device:
[04] Device: [1]2F:EE:98:DA:7E:49 RSSI: -73

Appending device:
[05] Device: [1]7A:3E:D9:6D:C0:C3 RSSI: -63

最佳答案

您应该使用List<string>及其 Add方法在这里。一个List就像一个没有固定大小的数组,可以按照您想要的方式扩展1

Append是一个所谓的 LINQ 方法,它将返回附加了该值的数组的“副本”2,而不是修改您调用它的实例,这不是您想要做的。

如果确实需要返回字符串数组,请调用 .ToArray()最终在名单上。

internal string[] scanBleu(int scanTime)
{
//returns array of found devices.
List<string> devices = new();

bleuInBuffer.Clear();
//Scan
bleuPort.WriteLine("AT+CENTRAL\r\n");
Thread.Sleep(100);
bleuPort.WriteLine("AT+GAPSCAN=" + scanTime + "\r\n"); //Scan for x-seconds
Thread.Sleep(1000 * scanTime);//Sleep while scanning, disabling button for scan time
for (int i = 0; i < bleuInBuffer.Count; i++)
{
if (bleuInBuffer[i].Contains("Device"))
{
devices.Add(bleuInBuffer[i].ToString());
Console.WriteLine("Appending device: " + bleuInBuffer[i]);
}
}
devices.Add("Hello this is a test");
Thread.Sleep(50); //BREAK POINT SET UP HERE!
return devices.ToArray();
}

1 我想您有 Python 背景,因为由于方括号的缘故,Python“列表”看起来像 C# 数组,并且没有固定的大小。 Python 列表的 C# 伴侣是 List但是,实例的方法名称略有不同,例如 Add而不是Append .

2 此语句自 LINQ 以来极其简化是惰性求值的,只有在迭代它时返回一个具有您希望它具有的效果的枚举器,而不会修改您调用它的实例或自行创建新实例。

关于c# - Windows 窗体 C#,返回字符串数组始终为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71960464/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com