码迷,mamicode.com
首页 > 编程语言 > 详细

Go语言类型声明以及转换、默认值

时间:2014-11-15 20:03:52      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   sp   div   on   log   bs   

package main

import(
  "fmt"
)

type TestInterface interface{}

func main(){
  a:=65 // char A ‘s ascii code
  b:=float64(a)
  c:=string(a)
  fmt.Println(a)
  fmt.Println(b)
  fmt.Println(c) // A
  //fmt.Println(c==nil)//error
  var ti TestInterface
  fmt.Println(ti == nil)
  fmt.Println("convert int to string vs string‘s empty", c=="") //false
  var s string
  fmt.Println("convert int to string vs string‘s empty", s=="") // true
}

 

Go语言类型声明以及转换、默认值

标签:style   blog   color   ar   sp   div   on   log   bs   

原文地址:http://www.cnblogs.com/yanyuge/p/4100040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!