c#中定义常量
https://blog.csdn.net/qq_41617901/article/details/90513938
- static class Constants
- {
- public const double Pi = 3.14159;
- public const int SpeedOfLight = 300000; // km per sec.
- }
- class Program
- {
- static void Main()
- {
- double radius = 5.3;
- double area = Constants.Pi * (radius * radius);
- int secsFromSun = 149476000 / Constants.SpeedOfLight; // in km
- }
- }

浙公网安备 33010602011771号