zoukankan      html  css  js  c++  java
  • C#基本语法

    一、条件语句:

    if(条件)

    { //执行语句 }

    else if{条件}

    { //执行语句 }

    else

    { //执行语句 }

    int i=0;

    swith(i)

    {

      case 0:

        //执行语句

        break;

      case 1:

        //执行语句

        break;

      default:

        //都不满足则执行此语句

        break;

    }

    二、循环语句:

    for(int i=0;i<10;i++)

    { //执行语句 }

    while(条件)//先判断

    { //执行语句 }

    do

    { //执行语句 }

    while(条件);//后判断,至少执行一次

    foreach(type row in rows)//row是rows中的一项

    { //执行语句 }

    注:break; //跳出循环,终止循环

      continue;//跳出本次循环,进行下次循环

    三、异常

    try

    { //监测的语句块  }

    cath(Exception ex)

    { //发生异常后执行的语句 }

    finally

    { //始终执行的语句块 }

    抛出自定义异常

    thow new my("自定义的异常");

    四、属性过程

    public class student

    {

      private string name;//私有变量

      public string Name

      {

        get{return name;}

        set{name=value;}

      }

    }

    五、构造/析构函数

    public class studet

    {

      public studet()

      {//构造函数}

      public ~studet()

      {//析构函数}

    }

    规则:1.无返回值 2.与类同名

    构造函数:可带参数

    析构函数:1.不可带参数

         2.~符号

  • 相关阅读:
    objectc 垃圾回收机制
    core date
    core data 中删除一个对象
    cell.accessoryType
    使用core data 框架
    Excel cell format in dynamcis ax 2009
    How to using X++ code to add security checking for go to main table
    Dos命令
    How to fix to report is empty issue
    Hot to catching ClrErrors in Dynamics AX
  • 原文地址:https://www.cnblogs.com/hailexuexi/p/1780304.html
Copyright © 2011-2022 走看看