Math.BigMul メソッド
アセンブリ: mscorlib (mscorlib.dll 内)

Dim a As Integer Dim b As Integer Dim returnValue As Long returnValue = Math.BigMul(a, b)
戻り値
指定した数値の積を格納している Int64。

' This example demonstrates Math.BigMul() Imports System Class Sample Public Shared Sub Main() Dim int1 As Integer = Int32.MaxValue Dim int2 As Integer = Int32.MaxValue Dim longResult As Long ' longResult = Math.BigMul(int1, int2) Console.WriteLine("Calculate the product of two Int32 values:") Console.WriteLine("{0} * {1} = {2}", int1, int2, longResult) End Sub 'Main End Class 'Sample ' 'This example produces the following results: 'Calculate the product of two Int32 values: '2147483647 * 2147483647 = 4611686014132420609 '
// This example demonstrates Math.BigMul() using System; class Sample { public static void Main() { int int1 = Int32.MaxValue; int int2 = Int32.MaxValue; long longResult; // longResult = Math.BigMul(int1, int2); Console.WriteLine("Calculate the product of two Int32 values:"); Console.WriteLine("{0} * {1} = {2}", int1, int2, longResult); } } /* This example produces the following results: Calculate the product of two Int32 values: 2147483647 * 2147483647 = 4611686014132420609 */
// This example demonstrates Math.BigMul() using namespace System; int main() { int int1 = Int32::MaxValue; int int2 = Int32::MaxValue; Int64 longResult; // longResult = Math::BigMul( int1, int2 ); Console::WriteLine( "Calculate the product of two Int32 values:" ); Console::WriteLine( "{0} * {1} = {2}", int1, int2, longResult ); } /* This example produces the following results: Calculate the product of two Int32 values: 2147483647 * 2147483647 = 4611686014132420609 */
// This example demonstrates Math.BigMul() import System.*; class Sample { public static void main(String[] args) { int int1 = Int32.MaxValue; int int2 = Int32.MaxValue; long longResult; // longResult = System.Math.BigMul(int1, int2); Console.WriteLine("Calculate the product of two Int32 values:"); Console.WriteLine("{0} * {1} = {2}", System.Convert.ToString(int1), System.Convert.ToString(int2), System.Convert.ToString(longResult)); } //main } //Sample /* This example produces the following results: Calculate the product of two Int32 values: 2147483647 * 2147483647 = 4611686014132420609 */

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からMath.BigMul メソッドを検索する場合は、下記のリンクをクリックしてください。

- Math.BigMul メソッドのページへのリンク