如何防止使用 SetPixel 方法?

发布于 2024-10-15 01:35:16 字数 281 浏览 1 评论 0原文

我有类:

class MyPic  
{  
    private Bitmap bmp=null;

    public MyPic(Bitmap b)
    {
          bmp=b;
    }

    public Bitmap Bmp
    {
        get { return bmp; }
    }
}

我将 Bmp 设为只读属性,但用户仍然可以使用 SetPixel 方法修改它。我怎样才能防止这种情况发生?

I have class:

class MyPic  
{  
    private Bitmap bmp=null;

    public MyPic(Bitmap b)
    {
          bmp=b;
    }

    public Bitmap Bmp
    {
        get { return bmp; }
    }
}

I made Bmp readonly property but user still can modify it by using SetPixel method. How can I prevent that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

尐偏执 2024-10-22 01:35:16

您不仅可以调用SetPixel,还可以获取一个Graphics并在其上进行绘制。位图在设计上是可变的。如果用户无法修改位图对您来说很重要,请在返回之前使用复制构造函数创建一个副本。

http://msdn.microsoft.com/en-us/library/ts25csc8.aspx

You can not only call SetPixel, but also get a Graphics and draw on it. Bitmaps are mutable by design. If it is important to you that the user cannot modify your bitmap, create a copy using the copy constructor before returning it.

http://msdn.microsoft.com/en-us/library/ts25csc8.aspx

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