对象当前正在其他地方使用
我正在使用以下代码
出现以下错误
对象当前正在其他地方使用。
请告诉我正确的方法
Random rnd = new Random();
Pen p = new Pen(Color.Black);
Parallel.For(0, 1000,
i =>
pictureBox1.CreateGraphics().DrawEllipse(p, rnd.Next(0, pictureBox1.Width),
rnd.Next(pictureBox1.Height),
10, 20)); // error runtime
I am using the following code
The following error occurs
Object is currently in use elsewhere.
Please show me the right way
Random rnd = new Random();
Pen p = new Pen(Color.Black);
Parallel.For(0, 1000,
i =>
pictureBox1.CreateGraphics().DrawEllipse(p, rnd.Next(0, pictureBox1.Width),
rnd.Next(pictureBox1.Height),
10, 20)); // error runtime
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
rnd.Next 有副作用,并且不是线程安全的。
尝试 Jon Skeet 的 ThreadLocal 解决方案。
rnd.Next has side effects, and is not thread-safe.
Try Jon Skeet's ThreadLocal solution.