• C#流程控制_异常捕获_try-catch使用


    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;

    namespace _02异常捕获
    {
        class Program
         {
            static void Main(string[] args)
              {
                //语法上没有错误,在程序运行的过程当中,由于某些原因程序出现了错误,不能再正常的运行。
                bool b = true;
                int number=0;//声明了一个变量
                Console.WriteLine("请输入一个数字");    
                try
                {
                  //abc
                  number = Convert.ToInt32(Console.ReadLine());//赋值

                }
                  // Console.WriteLine("fdsfdsfds");      
                catch
                 {
                  Console.WriteLine("输入的内容不能够转换成数字");
                  b = false;
                  }
                  //我们如果要执行下面这行代码,需要满足某些条件。
                  //让代码满足某些条件去执行的话,使用bool类型
                if (b)
                  {
                Console.WriteLine(number * 2);//使用
                    }
                Console.ReadKey();
          }
        }
    }

  • 相关阅读:
    mysql中的内连接,外连接
    MySQL左连接、右连接
    attempted to assign id from null onetoone
    Hibernate session方法
    java.sql.SQLException: No operations allowed after connection closed.Connection was implicitly closed due to underlying exception/error
    hibernate多对一、一对一、一对多、多对多的配置方法
    齐头并进
    w5100的板子做回来了,再次犯错误。
    一个阶段的任务基本完成了
    任务繁重
  • 原文地址:https://www.cnblogs.com/momj/p/14262024.html
Copyright © 2020-2023  润新知