几天前,作为一个c#newbie,我写了一个类,感谢将不同线程使用的公共变量(但不同的值)放在一起,每个都访问不同的postgres数据库。最近,了解更多关于c#的信息,我想知道这是否真的正确。鉴于我到处读到的内容,我期待这些字段由线程" one"将被线程"两个"覆盖,换句话说,两个线程最终将获得所有字段的相同值。
实际上,它似乎没有那样工作,每个线程似乎保持自己的值,线程一仍然是db1值和线程二与db2值。怎么可能呢?当我感谢我理解来自同一类的不同实例的字段共享相同的值时,我错了吗?
我使用Visual Studio 2013,它需要在代码的开头设置[STAThread],这可能是一个解释吗?
感谢您的善意和熟练的解释
奥利弗
public class Context
{
public string host;
public string port;
public string user;
public string pwd;
public string dbname;
...
public Context(string db) {// Each thread is launched with a different database name
try {
var rep = string.Format(@"D:\Bd\{0}\params\config.txt",db); // one file for each thread
if (File.Exists(rep)) {
var dic = File.ReadAllLines(rep)
.Select(l => l.Split(new[] { '=' }))
.ToDictionary(s => s[0].Trim(), s => s[1].Trim());
host = dic["host"];
port = dic["port"];
user = dic["user"];
pwd = dic["pwd"];
dbname = db;
...
Thread thThd1 = new Thread(startthd1);
thThd1.Start();
public static void startthd1() {
Context ncontext = new Context("db1");
Chkthd gth = new Chk(ncontext);
}
Thread thThd2 = new Thread(startthd2);
thThd2.Start();
public static void startthd2() {
Context ncontext = new Context("db2");
Chkthd gth = new Chk(ncontext);
}
答案 0 :(得分:0)
鉴于问题中的示例代码,没有理由期望一个线程覆盖其他线程的字段。当该代码执行时,会创建两个新线程,并且这些线程独立并同时执行文件I-O读取“db1”和“dn2”文件路径。
如果在“Chkthd gth = new Chk(ncontext);”上放置断点,在startthd1()和startthd2()中的语句你应该期望两个线程一起停在这些语句中,并且每个方法中的局部变量保存从两个文件中读取的不同数据。
我怀疑在示例代码中不需要使用线程,并且有一个更简单的解决方案。
以下代码是否运行得稍慢,是否提供了所需的结果?
Chk gth1 = ReadFileData( "db1" );
Chk gth2 = ReadFileData( "db2" );
public static Chkthd ReadFileData( string dbName ) {
Context ncontext = new Context("db2");
return new Chk(ncontext);
}