自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(9)
  • 资源 (10)
  • 收藏
  • 关注

原创 二义性:Common Base Class

// virtualbase.cpp : Defines the entry point for the console application.//#include "stdafx.h"#includeusing namespace std;class A{protected: int a;public: A(int aa):a(aa) {} ~A(void) {}};class B:v

2009-06-24 09:35:00 387

原创 自己实现全排列:I found some old code were good:We should think in a reverse way

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace zuhe{    class Program    {        static public void zuhe(char[] c, StringBuilder s, int level)        { 

2009-06-23 16:30:00 261

原创 插入排序:InsertSort:no more than ten lines

using System;namespace insertsort{   class program   {      static void Main()      {         int[] arr={56,12,4,89,42,45,4,89};         int len=arr.Length;         for(int i=1;i         {           

2009-06-21 21:52:00 227

原创 选择排序:SelectSort:select the minimum every time

using System;namespace SelectSort{  class program  {    static void Main()    {      int[] arr={12,67,2,90,45,67,23,67};      int len=arr.Length;      int min,index;      for(int i=0;i      {        m

2009-06-21 00:07:00 220

原创 反射:Type and Reflection

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace House{    public class Class1    {            private string name;            private int age;           

2009-06-09 11:52:00 217

原创 显式和隐式转换:Explicit and Implicit,Immortal and Monster

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{    class Program    {        class Immortal        {            public string name;  

2009-06-09 09:07:00 353

原创 索引器:Both Indexer and Switch have two types

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace PTest{    class Program    {        class WeatherOfWeek        {            public string this[int Index] 

2009-06-08 17:15:00 284

原创 抽象类和抽象方法:Abstract and override,Event ,Indexer

//Test Classusing System;using System.Collections.Generic;using System.Linq;using System.Text;namespace CSharpTest{    public abstract class BaseClass    {        public abstract String Attribut

2009-06-08 15:48:00 415

原创 圈人数数:An interesting way to delete numbers

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace choice{    class Program    {        static void Main(string[] args)        {            int count=0;     

2009-06-04 14:56:00 442

flask框架原理

描述了web服务器和flask的关系;对web服务器和flask框架的搭建给了建议;初学者可以快速对flask框架有清晰的认识!

2017-09-02

WCF的简单实验,实用

WCF的框架搭建,参考网上的连载,简单的计算服务

2010-04-30

MFC写的IE,有收藏夹功能

MFC写的浏览器,有基本功能,收藏夹链接可用,其他功能有待完善

2010-04-28

MFC写的浏览器,有收藏夹

基本的浏览器功能,收藏夹的链接跳转问题在研究中

2010-04-28

Operating data using asp.net

Add,delete and search data record without database

2009-12-02

A Simple Chatting Program using C++

A simple program that can send and receive messages,the applied environment is the same network.

2009-10-21

Draw different style using MFC

Know message on_command(ID_Line,&CDrawMView::OnLine())

2009-09-23

Make Two Timers using MFC

Learn MFC to know how the messages work and timer will give very swift result

2009-09-13

WF Practice

It has some useful components of WF,if you just want to learn something about WF.It may be helpful for you.

2009-05-11

simple workflow

very easy to understand the idea of workflow

2009-04-21

空空如也

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

TA关注的人

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