詳解Go與PHP的語法對比
概述
Go 是由 Google 設計的一門靜態型別的編譯型語言。它有點類似於 C,但是它包含了更多的優點,比如垃圾回收、記憶體安全、結構型別和併發性。它的併發機制使多核和網路機器能夠發揮最大的作用。這是 golang 的最佳賣點之一。此外,Go 速度快,表現力強,乾淨且高效。這也是 Go 如此吸引開發者學習的原因。
php 是一種動態型別語言,它使新手更容易編寫程式碼。現在的問題是,PHP 開發人員能否從動態型別語言切換到像 Go 這樣的靜態型別語言?為了找到答案,讓我們對比一下 Go 和 PHP 之間的語法差異。
資料型別
Go 同時支援有符號和無符號整數,而 PHP 只支援有符號整數。
另一個主要區別是陣列。Go 對 array 和 map 有單獨的型別,而 PHP 陣列實際上是有序的 map。
Go 與 PHP 相比沒有物件。但是,Go 有一個類似於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 float64pbhZZyi
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"
];
Maps
// 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() { pwww.cppcns.comerson := 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 swww.cppcns.comtring) (string) {
return firstName + " " + lastName
}
func main() {
name := fullname("Foo","Bar")
fmt.Println(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 fullname(string $firstName,string $lastName) : string { return $firstName . " " . $lastName; } $name = fullname("Foo","Bar"); echo $name;
// PHP // 返回一個數組以獲得多個結果 function swap(string $x,string $y): array { return [$y,$x]; } [$a,$b] = swap('hello','world'); echo $a,$b;
控制語句
If-Else
// 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 bighttp://www.cppcns.comger than b";
} else {
echo "a is NOT greater than b";
}
}
compare(12,10);
Switch
根據 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: http://www.cppcns.com 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; }
For 迴圈
// 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;
While 迴圈
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;
Foreach/Range
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: %s\n",index,colour) } }
// PHP $colours = ["Maroon","Blue"]; foreach($colours as $index => $colour) { echo "index: {$index},colour: {$colour}\n"; }
以上就是詳解Go與PHP的語法對比的詳細內容,更多關於Go與PHP的語法對比的資料請關注我們其它相關文章!