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

groovy学习(四)io

时间:2015-10-28 01:25:54      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:

package ch5

numbers = [11, 12, 13, 14]
def staffTel = [‘Ken‘ : 2745, ‘John‘ : 2746, ‘Jessie‘ : 2772]
println("Numbers:${numbers}") //双引号中的内容会被解释
println(‘Staff telephone:${staffTel}‘) //单引号中的内容不会被解释

printf(‘My name is Ken‘, [])
printf(‘My name is Ken\n‘, [])
def a = 10
def b = 15
printf("The sum of %d and %d is %d \n", [a, b, a + b])

def x = 1.234
def y = 56.78
printf(‘%f from %f gives %f \n‘, [y, x, x - y])

printf(‘[%s]\n‘, ["Hello there"])
printf(‘[%20s]\n‘, ["Hello there"]) // [ Hello there]
printf(‘[%-20s]\n‘, ["Hello there"]) // [Hello there ]

groovy学习(四)io

标签:

原文地址:http://www.cnblogs.com/zhouyang209117/p/4916032.html

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