Go是由Google設計的一門靜態型別的編譯型語言。它有點類似於C,但是它包含了更多的優點,比如垃圾回收、記憶體安全、結構型別和並行性。它的併行機制使多核和網路機器能夠發揮最大的作用。這是GoLang的最佳賣點之一。此外,Go速度快,表現力強,乾淨且高效。這也是Go如此吸引開發者學習的原因。
PHP是一種動態型別語言,它使新手更容易編寫程式碼。現在的問題是,PHP開發人員能否從動態型別語言切換到像Go這樣的靜態型別語言?為了找到答案,讓我們對比一下Go和PHP之間的語法差異。
object
的struct
型別。PHP 資料型別:
boolean string integer // Signed integer, PHP does not support unsigned integers. float (also known as "floats", "doubles", or "real numbers") array object null resource
Go 資料型別:
string bool int int8 int16 int32 int64 // Signed integer uint uint8 uint16 uint32 uint64 uintptr // Unsigned integers byte // alias for uint8 rune // alias for int32 float32 float64 complex64 complex128 array slices map struct
Go使用var
宣告全域性變數和函數變數。但是,它也支援帶有初始化程式的簡寫語法,但只能在函數內部使用。另一方面,PHP僅支援帶有初始化程式的變數宣告。
// 變數宣告 // Go // PHP var i int $i = 0 // integer var f float64 $f = 0.0 // float var b bool $b = false // boolean var s string $s = "" // string var a [2]string $a = [] // array // 簡短的變數宣告 // Go // PHP i := 0 $i = 0 // integer f := 0.0 $f = 0.0 // float b := false $b = false // boolean s := "" $s = "" // string a := [1]string{"hello"} $a = [] // array
// Go i := 42 // Signed integer f := float64(i) // Float u := uint(f) // Unsigned integer // PHP $i = 1; $f = (float) $i; // 1.0 $b = (bool) $f // true $s = (string) $b // "1"
// Go var a [2]string a[0] = "Hello" a[1] = "World" // OR a := [2]string{"hello", "world"} // PHP $a = [ "hello", "world" ];
// Go m := map[string]string{ "first_name": "Foo", "last_name": "Bar", } // PHP $m = [ "first_name" => "Foo", "last_name" => "Bar" ];
Go不支援物件。但是,您可以使用structs
實現object
之類的語法。
// Go package main import "fmt" type Person struct { Name string Address string } func main() { person := Person{"Foo bar", "Sydney, Australia"} fmt.Println(person.Name) } // PHP $person = new stdClass; $person->Name = "Foo bar"; $person->Address = "Sydney, Australia"; echo $person->Name; // 或使用型別轉換 $person = (object) [ 'Name' => "Foo bar", 'Address' => "Sydney, Australia" ]; echo $person->Name;
Go和PHP函數之間的主要區別是; Go函數可以返回任意數量的結果,而PHP函數只能返回一個結果。但是,PHP可以通過返回陣列來模擬相同的功能。
// Go package main import "fmt" func fullname(firstName string, lastName string) (string) { return firstName + " " + lastName } func main() { name := fullname("Foo", "Bar") fmt.Println(name) } // PHP function fullname(string $firstName, string $lastName) : string { return $firstName . " " . $lastName; } $name = fullname("Foo", "Bar"); echo $name; // 返回多個結果 // Go package main import "fmt" func swap(x, y string) (string, string) { return y, x } func main() { a, b := swap("hello", "world") fmt.Println(a, b) } // PHP // 返回一個陣列以獲得多個結果 function swap(string $x, string $y): array { return [$y, $x]; } [$a, $b] = swap('hello', 'world'); echo $a, $b;
// Go package main import ( "fmt" ) func compare(a int, b int) { if a > b { fmt.Println("a is bigger than b") } else { fmt.Println("a is NOT greater than b") } } func main() { compare(12, 10); } // PHP function compare(int $a, int $b) { if ($a > $b) { echo "a is bigger than b"; } else { echo "a is NOT greater than b"; } } compare(12, 10);
根據Golang官方教學文件:
Go的switch與C,C+,Java,JavaScript和PHP中的類似,除了Go只執行選中的case,而不是隨後的所有case。 實際上,
break
語句在這些語言中的每個case後都是必需的,而在Go中則是自動補充的。另一個重要的區別是Go的switch cases不需要是常數,並且涉及的值也不必是整數。
// Go package main import ( "fmt" "runtime" ) func main() { fmt.Print("Go runs on ") os := runtime.GOOS; switch os { case "darwin": fmt.Println("OS X.") case "linux": fmt.Println("Linux.") default: fmt.Printf("%s.n", os) } } // PHP echo "PHP runs on "; switch (PHP_OS) { case "darwin": echo "OS X."; break; case "linux": echo "Linux."; break; default: echo PHP_OS; }
// Go package main import "fmt" func main() { sum := 0 for i := 0; i < 10; i++ { sum += i } fmt.Println(sum) } // PHP $sum = 0; for ($i = 0; $i < 10; $i++) { $sum += $i; } echo $sum;
Go自身沒有while迴圈的語法。相應的,Go使用 for
迴圈代替實現while迴圈.
// Go package main import "fmt" func main() { sum := 1 for sum < 100 { sum += sum } fmt.Println(sum) } // PHP $sum = 1; while ($sum < 100) { $sum += $sum; } echo $sum;
PHP使用 foreach
疊代陣列和物件。與之對應, Go使用 range
疊代 slice 或 map。
// Go package main import "fmt" func main() { colours := []string{"Maroon", "Red", "Green", "Blue"} for index, colour := range colours { fmt.Printf("index: %d, colour: %sn", index, colour) } } // PHP $colours = ["Maroon", "Red", "Green", "Blue"]; foreach($colours as $index => $colour) { echo "index: {$index}, colour: {$colour}n"; }
今天的內容就是這些。我盡量使文章篇幅較小且簡潔。作為PHP開發人員, 我嘗試在練習Go時分享我的知識。也請隨意分享你的想法。希望你們喜歡閱讀本篇文章。
以上就是Go與PHP的語法是如何對比的詳細內容,更多請關注TW511.COM其它相關文章!