吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1439|回复: 1
收起左侧

[求助] C井无用代码会被编译器屏蔽掉吗?

[复制链接]
程序猿不缺对象 发表于 2019-12-26 22:51
我编了一个C井程序,这个程序一定不会输出"123"的
输出结果为:
hello world
5050


static void Main(string[] args)
        {
            try
            {
                Console.WriteLine("hello world");
                int s = 0;
                for (int i = 1; i <= 100; i++)
                {
                    s += i;
                    continue;
                    Console.WriteLine("123");
                }
                Console.WriteLine(s);
                    return;
                Console.WriteLine("123");
            }
            catch (Exception _123)
            {
                Console.WriteLine("123");
                Console.WriteLine(_123.Message);
            }
            finally { Console.ReadKey(); }
        }
编译完又反编译了一下,结果return和continue之后的代码与多余的命名空间都没出现,但出现了try和catch
难道编译器会认为return和continue之后的代码都是多余的吗?
如果是的话Console.WriteLine("hello world");这句明知道不会有异常,那么catch中的代码为什么还会编译?
TIM截图20191226224449.png

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

smldhz 发表于 2019-12-26 23:23
https://docs.microsoft.com/en-us ... ew=netframework-4.8
Exceptions
IOException
An I/O error occurred.

ArgumentNullException
format is null.

FormatException
The format specification in format is invalid.


还是可能会异常的 比如io
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 22:45

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表