码迷,mamicode.com
首页 > 其他好文 > 详细

弱类型、强类型、动态类型、静态类型

时间:2017-08-10 11:41:58      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:code   www.   div   question   actual   www   分享   tps   lin   

装载: https://www.zhihu.com/question/19918532

 

弱类型:
> "1"+2
12
 
强类型:
>>> "1"+2
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: cannot concatenate str and int objects
 
动态类型:
>>> a = 1
>>> type(a)
<type int>
>>> a = "s"
>>> type(a)
<type str>
 
静态类型:
Prelude> let a = "123" :: Int

<interactive>:2:9:
    Couldnt match expected type `Int with actual type `[Char]    In the expression: "123" :: Int
    In an equation for `a: a = "123" :: Int
 
技术分享

 

 

弱类型、强类型、动态类型、静态类型

标签:code   www.   div   question   actual   www   分享   tps   lin   

原文地址:http://www.cnblogs.com/bincoding/p/7337983.html

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