PowerShell v5类方法 - 问题

时间:2015-05-28 21:21:05

标签: class powershell methods powershell-v5.0

在PowerShell v5中使用新的类函数,如果我们可以将方法放入类中,我会试着理解。

我已经尝试了以下并且玩了一下,但是没有运气。

disposable

我尝试通过设置属性手动输入计算机名称,但后来我认为在创建对象时需要它

class Server {

    [string]$computerName = "192.168.0.200"
    [bool]$ping = (Test-Connection -ComputerName $computerName).count

}

$1 = [server]::new()
$1.computerName = "blah"

我得到的例外是

$1 = [server]::new($computerName = "192.168.0.200")

来自$ error的完整异常链接位于http://pastebin.com/WtxfYzb5

进一步使用了$ this.prop,但你无法使用自己的参数启动构造函数。

[ERROR] Exception calling ".ctor" with "0" argument(s): "Cannot validate argument on parameter 'ComputerName'. The argument is null or empty. Provide an argument that is not null or empty, and then try the 
[ERROR] command again."
[ERROR] At D:\Google Drive\Projects\VSPowerShell\DiscoveryFramework\DiscoveryFramework\DiscoveryFramework\class.ps1:12 char:1
[ERROR] + $1 = [server]::new()
[ERROR] + ~~~~~~~~~~~~~~~~~~~~
[ERROR]     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
[ERROR]     + FullyQualifiedErrorId : ParameterBindingValidationException
[ERROR]  
[DBG]: PS C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE> 
[DBG]: PS C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE> $1
Server
[DBG]: PS C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE> $1.gettype()
Server

2 个答案:

答案 0 :(得分:4)

你需要的是一个构造函数(或多个构造函数),如果你没有在你的类中指定一个,你得到的唯一构造函数是没有参数的默认构造函数。

总结一下,您希望使用与默认值不同的IP地址初始化您的服务器(并允许触发$ ping的默认值。)

我已经包含了我通常在我的类中包含的区域,以区分属性,构造函数和方法。

class Server {
    #region class properties
    [string]$computerName = "192.168.0.200"
    [bool]$ping = (Test-Connection -ComputerName $this.computerName).count
    #endregion

    #region class constructors
    Server() {}

    Server([string]$computerName) {
        $this.computerName = $computerName
    }
    #endregion

    #region class methods
    #endregion
}

现在您可以在不向其传递参数的情况下创建对象:

[1] PS G:\> $1 = [Server]::new()
[2] PS G:\> $1

computerName  ping
------------  ----
192.168.0.200 True



[3] PS G:\> $1.computerName = 'blah'
[4] PS G:\> $1

computerName  ping
------------  ----
blah          True

现在,您还可以在创建对象时提供IP地址(或服务器名称)(注意,请勿提供属性名称。)

[5] PS G:\> $2 = [Server]::new("192.168.0.100")
[6] PS G:\> $2

computerName  ping
------------  ----
192.168.0.100 True

值得注意的是,注意类中有两个构造函数。在测试时,一旦我指定了自己的参数,默认的不带参数的构造函数就不再有效了,所以当你想要使用所有默认值时,我已经包含了一个零参数构造函数。

有关这些类及其构造函数和方法的详细信息,我建议您查看过去几天发布的Trevor Sullivan视频。

答案 1 :(得分:2)

我也在v5中使用新的Class功能,我在自己的代码中发现了我认为你可能需要"实例化" Server类,通过这样做,您可以提供默认值或计算值,如下所示:

class Server {

    [string]$computerName
    [bool]$ping

    Server([String]$Computer) {
        $computerName = $Computer
        $ping = (Test-Connection -ComputerName $Computer).count
    }

}

$1 = [server]::new("MYCOMPUTER")
$1