瘦瘦帅哥

文章
7
资源
0
加入时间
2年10月17天

[ C#学习日常 ] Graphics绘线擦除问题

设有两个点point1与point2Point point1=new Point(0, 0);Point point2=new Point(200,200);使用 Graphics 画板以及 DrawLine 可以两点之间的绘制一条线段using (Graphics graphics = this.CreateGraphics())    {        graphics.DrawLine...

c++ substr函数出现错误

terminate called after throwing an instance of 'std::out_of_range'what(): basic_string::substrAborted原因:substr后面参数的偏移量超过string的size后续细节原因正在探讨。。。。探讨出来了,原因是自己在写代码的时候不仔细,用的vector没有及时的clear掉,导致不...