YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* 型 [#w431f437]
** タイプキャスト [#g451d4b7]
[String]や[Int][Double]等でタイプキャストする。
PS C:\Users\taro> 2 * 3
6
PS C:\Users\taro> [String] 2 * 3
222
*** ToString() [#w1e3831a]
PS C:\Users\taro> $i = 10
PS C:\Users\taro> $i.ToString();
10
** 型を調べる [#z339ff10]
*** GetType() [#red8ac48]
PS C:\Users\taro> $i.GetType()
IsPublic IsSerial Name ...
-------- -------- ---- ...
True True Int32 ...
*** パイプを通るオブジェクトの型を調べる [#na3a67eb]
PS> Get-Date | % gettype
IsPublic IsSerial Name ...
-------- -------- ---- ...
True True DateTime ...
PS> dir *.txt | % GetType | select -Unique
IsPublic IsSerial Name ...
-------- -------- ---- ...
True True FileInfo ...
終了行:
* 型 [#w431f437]
** タイプキャスト [#g451d4b7]
[String]や[Int][Double]等でタイプキャストする。
PS C:\Users\taro> 2 * 3
6
PS C:\Users\taro> [String] 2 * 3
222
*** ToString() [#w1e3831a]
PS C:\Users\taro> $i = 10
PS C:\Users\taro> $i.ToString();
10
** 型を調べる [#z339ff10]
*** GetType() [#red8ac48]
PS C:\Users\taro> $i.GetType()
IsPublic IsSerial Name ...
-------- -------- ---- ...
True True Int32 ...
*** パイプを通るオブジェクトの型を調べる [#na3a67eb]
PS> Get-Date | % gettype
IsPublic IsSerial Name ...
-------- -------- ---- ...
True True DateTime ...
PS> dir *.txt | % GetType | select -Unique
IsPublic IsSerial Name ...
-------- -------- ---- ...
True True FileInfo ...
ページ名: