Page 31 - E-Modul Pemrograman Dasar Kelas X RPL
P. 31

Perhatikan contoh berikut.


                 using System;

                 using System.Collections.Generic;

                 using System.Linq;

                 using System.Text;


                 namespace ConsoleApplication1

                 {

                        class ContohMethod

                        {

                               //ini method untuk menampung parameter dengan tipe
                        data
                 int

                               //jika method ini dengan parameter tipe data
                        double, terjadi error

                               public int Max(int a, int b, int c =
                        Int32.MinValue)

                               {

                                       int maxi = (a > b) ? a ; b;

                                       return (c > max1) ? c: max1;
                               }

                               //ini method untuk menampung parameter dengan tipe
                        data double

                               //method ini untuk overloading method sebelumnya

                               public double Max (double a, double b, double c =
                        double.

                 MinValue)

                               {
                                       double maxi = (a > b) ? a : b;

                                       return (c > max1) ? c : max1;






                                                             21
   26   27   28   29   30   31   32   33   34   35   36