码迷,mamicode.com
首页 > Web开发 > 详细

【Powershell】【Math Class】直接调用Math Class的.Net方法进行数字运算

时间:2015-08-20 06:53:14      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:powershell   math   最大值   最小值   取整   

Powershell里对数字的计算我们通常还习惯于简单的使用运算符号去进行,但是对于相对复杂的数字运算则需要相对复杂的函数或命令去进行,这里我们介绍一种直接通过.Net类的计算方法,简单直接的去进行复杂的数字运算而表达式极度简洁。同时也让我们能逐步深入的接触Powershell,因为Powershell正在基于.Net面向对象的程式化语言。

 

一、格式

Math Class的使用非常简单,重点是要注意格式,任何直接基于.Net类的方法都需要使用[“class”]::methed的表达式。

 

二、Math的重点使用方法

  • 取绝对值:[Math]:Abs(“-1”)                 返回:1

  • 取较大值:[Math]:Max(“1”,”2”)          返回:2

  • 取较小值:[Math]:Min(“1”,”2”)           返回:1

  • 进一取整:[Math]: Ceiling(“1.2”)        返回:2

  • 取整:[Math]:Floor(“1.2”)                        返回:1

 

更加详细的math class的使用方法可参考msdn白皮书:

https://msdn.microsoft.com/en-us/library/system.math(v=vs.110).aspx


本文出自 “精华荟萃” 博客,请务必保留此出处http://simy88.blog.51cto.com/7370552/1686243

【Powershell】【Math Class】直接调用Math Class的.Net方法进行数字运算

标签:powershell   math   最大值   最小值   取整   

原文地址:http://simy88.blog.51cto.com/7370552/1686243

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!