c语言sscanf函数的用法是什么
275
2022-09-20
C#实现乘幂函数
首先,直接给出函数的具体实现,如下:
static double Power(double baseNume, int exp) { if (baseNume.Equals(0)) { throw new NullBaseException(); } else { double mul = 1.0; if (exp != 0) { while (exp > 0) { mul *= baseNume; exp--; } } else { mul = baseNume; } return mul; } }
在上面的函数中,可以发现我抛出了一个异常,叫做NullBaseException,这个异常是我自己定义的,系统中没有给出。那么问题来了,如何在C#中自定义异常呢?
在C#中自定义异常,可以采用继承系统异常并重写的机制,如下所示(注意其中的构造函数):
using System;class NullBaseException : Exception{ public NullBaseException( string message = "The Base should not be Null or zero!" ) : base(message) { //pass } public override string Message { get { return base.Message; } }}
由是,即可完成一个简单的乘幂函数,而且其运行效率也比较高。最后给出完整的代码,包含测试部分:
using System;namespace PowerFunc{ class Program { static void Main(string[] args) { double res = Power(5.5, 3); Console.WriteLine (res); } static double Power(double baseNume, int exp) { if (baseNume.Equals(0)) { throw new NullBaseException(); } else { double mul = 1.0; if (exp != 0) { while (exp > 0) { mul *= baseNume; exp--; } } else { mul = baseNume; } return mul; } } }}
作者:艾孜尔江
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~