相同问题go语言与php的实现对比

简介:

一、面向对象


php:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
class  Rectangle
{
     private  $width ;
     private  $height ;
     private  $color ;
 
     public  function  __construct( $width $height $color )
     {
         $this ->width  =  $width ;
         $this ->height =  $height ;
         $this ->color  =  $color ;
     }
 
     public  function  setColor( $color )
     {
         $this ->color =  $color ;
     }
 
     public  function  getColor()
     {
         return  $this ->color;
     }
 
     public  function  area()
     {
         return  $this ->width *  $this ->height;
     }
 
 
}
 
$r1  new  Rectangle(12, 2,  "白色" );
$r2  new  Rectangle(9, 4,  "蓝色" );
echo  "Area of r1 is " $r1 ->area(). "\n" ;
echo  "Area of r2 is " $r2 ->area(). "\n" ;
 
echo  "Color of r2 is " $r2 ->getColor(). "\n" ;
 
echo  "set new color\n" ;
$r2 ->setColor( "绿色" );
echo  "Color of r2 is " $r2 ->getColor(). "\n" ;


go:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package main
 
import  "fmt"
 
type Rectangle struct {
     width, height float64
     color         string
}
 
// 如果声明接收者为指定,当使用T类型来调用时,go会自动转换为*T,太TM聪明了
func (r *Rectangle) SetColor(color string) {
     r.color = color
}
 
func (r Rectangle) area() float64 {
     return  r.width * r.height
}
 
func main() {
     r1 := Rectangle{12, 2,  "白色" }
     r2 := Rectangle{9, 4,  "蓝色" }
 
     fmt.Println( "Area of r1 is: " , r1.area())
     fmt.Println( "Area of r2 is: " , r2.area())
 
     fmt.Println( "Color of r2 is: " , r2.color)
     fmt.Println( "set new color" )
     r2.SetColor( "绿色" // 等价于(&r2).SetColor("绿色"),这里r2不需要传地址,当然,传地址也不错,只是go会自动帮助转换,没有必要
     fmt.Println( "Color of r2 is: " , r2.color)
}









本文转自 ustb80 51CTO博客,原文链接:http://blog.51cto.com/ustb80/1604795,如需转载请自行联系原作者
目录
相关文章
|
6天前
|
存储 JSON 监控
Viper,一个Go语言配置管理神器!
Viper 是一个功能强大的 Go 语言配置管理库,支持从多种来源读取配置,包括文件、环境变量、远程配置中心等。本文详细介绍了 Viper 的核心特性和使用方法,包括从本地 YAML 文件和 Consul 远程配置中心读取配置的示例。Viper 的多来源配置、动态配置和轻松集成特性使其成为管理复杂应用配置的理想选择。
23 2
|
10天前
|
JavaScript Java Go
探索Go语言在微服务架构中的优势
在微服务架构的浪潮中,Go语言以其简洁、高效和并发处理能力脱颖而出。本文将深入探讨Go语言在构建微服务时的性能优势,包括其在内存管理、网络编程、并发模型以及工具链支持方面的特点。通过对比其他流行语言,我们将揭示Go语言如何成为微服务架构中的一股清流。
|
4天前
|
Go 索引
go语言中的循环语句
【11月更文挑战第4天】
13 2
|
4天前
|
Go C++
go语言中的条件语句
【11月更文挑战第4天】
15 2
|
9天前
|
Ubuntu 编译器 Linux
go语言中SQLite3驱动安装
【11月更文挑战第2天】
31 7
|
9天前
|
关系型数据库 Go 网络安全
go语言中PostgreSQL驱动安装
【11月更文挑战第2天】
38 5
|
9天前
|
安全 Go
用 Zap 轻松搞定 Go 语言中的结构化日志
在现代应用程序开发中,日志记录至关重要。Go 语言中有许多日志库,而 Zap 因其高性能和灵活性脱颖而出。本文详细介绍如何在 Go 项目中使用 Zap 进行结构化日志记录,并展示如何定制日志输出,满足生产环境需求。通过基础示例、SugaredLogger 的便捷使用以及自定义日志配置,帮助你在实际开发中高效管理日志。
25 1
|
8天前
|
程序员 Go
go语言中的控制结构
【11月更文挑战第3天】
84 58
|
7天前
|
监控 Go API
Go语言在微服务架构中的应用实践
在微服务架构的浪潮中,Go语言以其简洁、高效和并发处理能力脱颖而出,成为构建微服务的理想选择。本文将探讨Go语言在微服务架构中的应用实践,包括Go语言的特性如何适应微服务架构的需求,以及在实际开发中如何利用Go语言的特性来提高服务的性能和可维护性。我们将通过一个具体的案例分析,展示Go语言在微服务开发中的优势,并讨论在实际应用中可能遇到的挑战和解决方案。
|
8天前
|
存储 编译器 Go
go语言中的变量、常量、数据类型
【11月更文挑战第3天】
25 9