想通过main()函数传递参数,先重载下面的OnStartup() public
partial class App : Application { public static string args0; protected override
void OnStar...
分类:
其他好文 时间:
2014-05-16 09:01:55
阅读次数:
561
1、类的构成及封装1.1、访问权限限定符C++类中为了实现隐藏、限制对某些成员的非法访问,设置了3个访问限定符。public:公有成员,也称为类的接口,可以被类内核类外的函数访问。protected:保护成员,与继承相关。private:私有成员,只能被类内的函数访问。1.2、定义类时的注意事项(1...
分类:
编程语言 时间:
2014-05-16 07:23:57
阅读次数:
249
Index.aspx 页面 iframe实现无刷新上传图片 Addimg2.aspx页面
Addimg2.aspx.cs 页面protected void Butt...
分类:
其他好文 时间:
2014-05-16 06:28:03
阅读次数:
286
虽然这个知识比较简单, 但是老是会忘, 写上来,
增强记忆.在C#语言中,共有五种访问修饰符:public、private、protected、internal、protected
internal。作用范围如下表:访问修饰符 说明public 公有访问。不受任何限制。private 私有访问。只限...
分类:
其他好文 时间:
2014-05-16 04:54:48
阅读次数:
235
#include
#include
#include
using namespace std;
enum vehicleStaus {rest, running}; //车辆状态:泊车、行进
class vehicle //车辆类,虚基类
{
protected:
int maxSpeed; //最大车速
int currentSpeed;...
分类:
其他好文 时间:
2014-05-15 15:05:01
阅读次数:
262
1. 在web.config文件中的<system.web>加入以下设置2.
添加一个页面,页面名称为Defalut.aspx在后台Defalut.aspx.cs页面写以下代码:protected void
Page_Load(object sender, EventArgs e){ AjaxPr....
分类:
Web程序 时间:
2014-05-15 12:04:12
阅读次数:
264
#include
using namespace std;
class Animal
{
public:
Animal() {}
void eat()
{
cout << "eat\n";
}
protected:
void play()
{
cout << "play\n";
}...
分类:
其他好文 时间:
2014-05-15 06:21:51
阅读次数:
234
#include
using namespace std;
class Animal //动物类
{
public:
Animal() {}
void eat(){
cout << "eat\n";
}
protected:
void play()
{
cout << "play\n";
...
分类:
其他好文 时间:
2014-05-15 06:02:54
阅读次数:
360
#include
#include
#include
using namespace std;
enum vehicleStaus {rest, running}; //车辆状态:泊车、行进
class vehicle //车辆类
{
protected:
int maxSpeed; //最大车速
int currentSpeed; //当前速度
int weigh...
分类:
其他好文 时间:
2014-05-15 01:26:09
阅读次数:
403
在不同包,子类继承后可以使用父类的protect权限的属性或方法父类:package
com.tinyphp;public class Father{ protected String name;}子类:package
com.test;import com.tinyphp.Father;cl...
分类:
编程语言 时间:
2014-05-13 18:19:55
阅读次数:
404