自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Eric.liu's Tech Space

Eric.liu的技术专栏

  • 博客(7)
  • 收藏
  • 关注

原创 基类指针指向子类对象改如何理解

public class MyBase{    public virtual string Meth1()    {        return "MyBase-Meth1";    }    public virtual string Meth2()    {        return "MyBase-Meth2";    }    public virtual string Meth3() 

2006-02-24 14:39:00 1229

原创 关于系统函数重载和属性的问题

 using System; public class Person    {        private string MyName = "liuguoqing";        private int MyAge = 25;        public string Name        {            get            {                retu

2006-02-24 14:37:00 827

原创 学习C#对接口问题的两个疑惑

学习C#对接口问题的一个疑惑 interface IControl    {        void Print();    }    interface ITextBox : IControl    {        void SetText(string text);    }    interface IListBox : IControl    {    void SetItem(st

2006-02-24 14:31:00 800

原创 学习C#类的实例化 和方法的问题

using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{    class A    {        public void F()         {            Console.WriteLine("A.F");        }        p

2006-02-24 14:29:00 3123 1

原创 c#过程中遇到的关于构造函数和继承的问题

3--------------->>学习c#过程中遇到的关于构造函数和继承的问题using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{    class Vechicle    {        public int wheels;        protect

2006-02-24 14:26:00 2346 1

原创 学习C#在tyr catch finally 中遇到的问题

using System;using System.Collections.Generic;using System.Text;namespace ConsoleApplication1{    class test    {        static void F()        {            try            {                G();     

2006-02-24 14:24:00 1014

原创 分类 计算 挑选的存贮过程

CREATE procedure xp_lucky_programe_1@username nvarchar(20),@int_big_class int as --收藏总的节目总数declare @count_program  intselect @count_program=count(*)from walkradiowhere w_username=@usernameif(@count_pr

2006-02-09 09:01:00 829

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除