一、定义一个类并封装
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 封装继承多态
{
class jisuan
{
public int jsA(int a, int b)//定义一个方法jsA,带返回值的
{
return a+ b;//返回值为a+b
}
}
}
二、实现封装的类
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace 封装继承多态
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
jisuan js001 = new jisuan();//调用类,先用new实例化
int result = js001.jsA(5, 6);//调用类中的方法,类名.方法名(参数)
MessageBox.Show(result.ToString());
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("刚刚你点了这个按扭");
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("你加载了这个窗体");
}
}
}
本文介绍了一个简单的C#程序,演示了如何定义一个类并实现封装,通过实例化对象调用类的方法进行计算,并展示结果。文章通过具体代码示例解释了类的定义、方法的使用以及事件处理。
1497

被折叠的 条评论
为什么被折叠?



