相同问题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,如需转载请自行联系原作者
目录
相关文章
|
9天前
|
存储 监控 算法
员工上网行为监控中的Go语言算法:布隆过滤器的应用
在信息化高速发展的时代,企业上网行为监管至关重要。布隆过滤器作为一种高效、节省空间的概率性数据结构,适用于大规模URL查询与匹配,是实现精准上网行为管理的理想选择。本文探讨了布隆过滤器的原理及其优缺点,并展示了如何使用Go语言实现该算法,以提升企业网络管理效率和安全性。尽管存在误报等局限性,但合理配置下,布隆过滤器为企业提供了经济有效的解决方案。
44 8
员工上网行为监控中的Go语言算法:布隆过滤器的应用
|
29天前
|
存储 Go 索引
go语言中数组和切片
go语言中数组和切片
39 7
|
28天前
|
Go 开发工具
百炼-千问模型通过openai接口构建assistant 等 go语言
由于阿里百炼平台通义千问大模型没有完善的go语言兼容openapi示例,并且官方答复assistant是不兼容openapi sdk的。 实际使用中发现是能够支持的,所以自己写了一个demo test示例,给大家做一个参考。
|
29天前
|
程序员 Go
go语言中结构体(Struct)
go语言中结构体(Struct)
100 71
|
28天前
|
存储 Go 索引
go语言中的数组(Array)
go语言中的数组(Array)
104 67
|
1月前
|
Go 索引
go语言for遍历数组或切片
go语言for遍历数组或切片
99 62
|
1月前
|
并行计算 安全 Go
Go语言中的并发编程:掌握goroutines和channels####
本文深入探讨了Go语言中并发编程的核心概念——goroutine和channel。不同于传统的线程模型,Go通过轻量级的goroutine和通信机制channel,实现了高效的并发处理。我们将从基础概念开始,逐步深入到实际应用案例,揭示如何在Go语言中优雅地实现并发控制和数据同步。 ####
|
3天前
|
算法 安全 Go
Go 语言中实现 RSA 加解密、签名验证算法
随着互联网的发展,安全需求日益增长。非对称加密算法RSA成为密码学中的重要代表。本文介绍如何使用Go语言和[forgoer/openssl](https://github.com/forgoer/openssl)库简化RSA加解密操作,包括秘钥生成、加解密及签名验证。该库还支持AES、DES等常用算法,安装简便,代码示例清晰易懂。
29 16
|
29天前
|
存储 Go
go语言中映射
go语言中映射
36 11
|
1月前
|
Go
go语言for遍历映射(map)
go语言for遍历映射(map)
35 12