pythonphp performance comparison_golang, python, php, c++, c, java performance comparison
Original title:Performance comparison of golang, python, php, c++, c, and java Golang, python, php, c+& in 2017 #43;, c, java, Nodejs performance comparison When I was working on PHP/C’/Go/Py, I had a sudden idea and wanted to make it mainstream recently. To make a simple comparison of the performance of programming languages - as for how to compare – we still have to use the magical Fibonacci algorithm. Maybe it’s more commonly used or fun. Okay,talk is cheap, show me your code! Open Mac,Click on Clion and start coding! 1. Why is the first What about Go? Because I personally am using it recently and it feels very good. package main import “fmt” func main{ fmt.Println(fibonacci(34)) } func fibonacci(i int ) int{ if(i<2){ return i; } return fibonacci(i-2) + fibonacci(i-1); } Let’s take a look with Go1.7 first: ; qiangjian@localhost:/works/learnCPP$ go version && time go build fib.go && time ./fib go version go1.7.5 darwin/amd64 real 0m0.206s user 0m0.165s sys 0m0.059s 5702887 real 0m0.052s user 0m0.045s sys 0m0.004s Then,Look at 1.8’s: qiangjian@localhost: /works/learnCPP$ go18 version && time go18 build fib.go && time ./fib go version go1.8 darwin/amd64 real 0m0.204s user 0m0.153s sys 0m0.062s 5702887 real 0m0.051s user 0m0.045s sys 0m0 .003s…
pythonphp performance comparison_golang, python, php, c++, c, java performance comparison
Original title:Performance comparison of golang, python, php, c++, c, and java Golang, python, php, c+& in 2017 #43;, c, java, Nodejs performance comparison When I was working on PHP/C’/Go/Py, I had a sudden idea and wanted to make it mainstream recently. To make a simple comparison of the performance of programming languages - as for how to compare – we still have to use the magical Fibonacci algorithm. Maybe it’s more commonly used or fun. Okay,talk is cheap, show me your code! Open Mac,Click on Clion and start coding! 1. Why is the first What about Go? Because I personally am using it recently and it feels very good. package main import “fmt” func main{ fmt.Println(fibonacci(34)) } func fibonacci(i int ) int{ if(i<2){ return i; } return fibonacci(i-2) + fibonacci(i-1); } Let’s take a look with Go1.7 first: ; qiangjian@localhost:/works/learnCPP$ go version && time go build fib.go && time ./fib go version go1.7.5 darwin/amd64 real 0m0.206s user 0m0.165s sys 0m0.059s 5702887 real 0m0.052s user 0m0.045s sys 0m0.004s Then,Look at 1.8’s: qiangjian@localhost: /works/learnCPP$ go18 version && time go18 build fib.go && time ./fib go version go1.8 darwin/amd64 real 0m0.204s user 0m0.153s sys 0m0.062s 5702887 real 0m0.051s user 0m0.045s sys 0m0 .003s…
pythonphp performance comparison_golang, python, php, c++, c, java performance comparison
Original title :golang, python, php, c++, c, java performance comparison 2017 golang, python, php, c+& #43;, c, java, Nodejs performance comparison When I was in PHP/C++/Go/Py , Make a simple comparison of the performance of the programming language , As for how to compare , I still have to use the magical Fibonacci algorithm. It may be more commonly used or fun. Okay,talk is cheap, show me your code! Turn on Mac,Click on Clion to start Coding! 1. Why is the first What about Go,Because I personally use it recently,It feels very good package main import “fmt” func main{ fmt.Println(fibonacci(34)) } func fibonacci(i int ) int{ if(i<2){ return i; } return fibonacci(i-2) + fibonacci(i-1); } Take a look with Go1.7 first: ; qiangjian@localhost:/works/learnCPP$ go version && time go build fib.go && time ./fib go version go1.7.5 darwin/amd64 real 0m0.206s user 0m0.165s sys 0m0.059s 5702887 real 0m0.052s user 0m0.045s sys 0m0.004s Then ,Look at 1.8: qiangjian@localhost: /works/learnCPP$ go18 version && time go18 build fib.go && time ./fib go version go1.8 darwin/amd64 real 0m0.204s user 0m0.153s sys 0m0.062s 5702887 real 0m0.051s user 0m0.045s sys 0m0 .003s I can’t see the difference,but the official 1.8 has improved 20% in GC, Compile, etc.,Maybe this…