private void button6_Click(object sender, EventArgs e)
{
mydrawtype = 0;
MyEditType = 6;
step = 0;
if (this.groupBox1.Visible)
ResetMicro();
if (this.pictureBox1.Cursor != Cursors.Default)
this.pictureBox1.Cursor = Cursors.Default;
this.groupBox4.visible = true;
this.groupBox4.Location = new Point(10, 239);
this.TextBox1.Text="";
this.TextBox1.Font=new Font("宋?体¬?",9,FontStyle.Regular);
this.TextBox1.ForeColor=Color.Black;
}
谁能帮忙解释一下这段C#代码
答案:2 悬赏:80 手机版
解决时间 2021-02-11 09:30
- 提问者网友:書生途
- 2021-02-10 18:35
最佳答案
- 五星知识达人网友:十年萤火照君眠
- 2021-02-10 19:45
private void button6_Click(object sender, EventArgs e)
{
mydrawtype = 0;//设置全局变量的值
MyEditType = 6;//设置全局变量的值
step = 0;//设置全局变量的值
if (this.groupBox1.Visible)//判定组合框可见
ResetMicro();//执行方法
if (this.pictureBox1.Cursor != Cursors.Default)//判定PictureBox1的鼠标图标不为默认
this.pictureBox1.Cursor = Cursors.Default;//则PictureBox1的鼠标图标为默认
this.groupBox4.visible = true;//GroupBox4控件可见
this.groupBox4.Location = new Point(10, 239);//GroupBox4的位置为(10,239)
this.TextBox1.Text="";//控件TextBox1的Text属性为空
this.TextBox1.Font=new Font("宋?体¬?",9,FontStyle.Regular);//控件TextBox1内的字体格式设置
this.TextBox1.ForeColor=Color.Black;//控件TextBox1的前景色为黑色,即输入字体着色为黑
}
{
mydrawtype = 0;//设置全局变量的值
MyEditType = 6;//设置全局变量的值
step = 0;//设置全局变量的值
if (this.groupBox1.Visible)//判定组合框可见
ResetMicro();//执行方法
if (this.pictureBox1.Cursor != Cursors.Default)//判定PictureBox1的鼠标图标不为默认
this.pictureBox1.Cursor = Cursors.Default;//则PictureBox1的鼠标图标为默认
this.groupBox4.visible = true;//GroupBox4控件可见
this.groupBox4.Location = new Point(10, 239);//GroupBox4的位置为(10,239)
this.TextBox1.Text="";//控件TextBox1的Text属性为空
this.TextBox1.Font=new Font("宋?体¬?",9,FontStyle.Regular);//控件TextBox1内的字体格式设置
this.TextBox1.ForeColor=Color.Black;//控件TextBox1的前景色为黑色,即输入字体着色为黑
}
全部回答
- 1楼网友:玩家
- 2021-02-10 21:05
首先我不知道你是怎么做的实验,但是有关stackalloc方法的要点,可以给你说下:1. stackalloc 是在堆栈而不是堆上分配内存块。int *p=stackalloc int[10]表明分配的地址空间足以包含10个int类型元素。2. stackalloc 仅在局部变量的初始值设定项中有效。也就是说,当该方法运行结束的时候,该空间就有可能被释放了(当然不一定是gc所为).3. 所以我认为,你看不到内存增长就是因为这个增长只是在main函数的生存周期内的,由于代码段运行速度过快,所以当main函数结束时,空间已经被释放。
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯