对象当前正在其他地方使用

发布于 2024-12-17 23:00:24 字数 503 浏览 0 评论 0原文

我正在使用以下代码

出现以下错误

对象当前正在其他地方使用。

请告诉我正确的方法

 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残疾 2024-12-24 23:00:24

rnd.Next 有副作用,并且不是线程安全的。

尝试 Jon Skeet 的 ThreadLocal 解决方案。

rnd.Next has side effects, and is not thread-safe.

Try Jon Skeet's ThreadLocal solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文