码迷,mamicode.com
首页 >  
搜索关键字:3d format    ( 13577个结果
MapReduce之自定义InputFormat
在企业开发中,Hadoop框架自带的InputFormat类型不能满足所有应用场景,需要自定义InputFormat来解决实际问题。 自定义InputFormat步骤如下: (1)自定义一个类继承FilelnputFormat。 (2)自定义一个类继承RecordReader,实现一次读取一个完整文 ...
分类:其他好文   时间:2020-07-19 16:25:43    阅读次数:67
NameNode和Zookeeper的format作用
NameNode和Zookeeper的format
分类:其他好文   时间:2020-07-19 11:56:56    阅读次数:99
1133 Splitting A Linked List (25分)
Given a singly linked list, you are supposed to rearrange its elements so that all the negative values appear before all of the non-negatives, and all ...
分类:其他好文   时间:2020-07-19 00:50:18    阅读次数:85
Python格式化字符串(f,F,format,%)
# 格式化字符串: 在字符串前加上 f 或者 F 使用 {变量名} 的形式来使用变量名的值 year = 2020 event = 'Referendum' value = f'Results of the {year} {event}' print(f'Results of the {year} ...
分类:编程语言   时间:2020-07-19 00:35:57    阅读次数:139
JAVA SWT的MessageBox对话框
Referenced jar: org.eclipse.swt.win32.win32.x86_64_3.113.0.v20191204-0601.jar import org.eclipse.swt.widgets.MessageBox; SWT有不同类型的对话框。有些对话框具有特殊的属性。Mes ...
分类:编程语言   时间:2020-07-18 22:35:03    阅读次数:84
spring cloud中微服务调用出现 Can not parse date while it seems to fit format 'yyyy-MM-dd'T'HH:mm:ss.SSS问题
spring.jackson.timeZone=GMT+08:00spring.jackson.date-format=yyyy-MM-dd HH:mm:ssspring.jackson.serialization.write_dates_as_timestamps=falsespring.mvc. ...
分类:编程语言   时间:2020-07-17 22:14:24    阅读次数:381
微信小程序-服务器返回数据中包含有\n换行符失效问题解决方案
新建filter.wxs文件,文件内容如下 var format = function (text) { if (!text) { return } var reg = getRegExp('\\\\n', 'g') return text.replace(reg,'\n')} module.exp ...
分类:微信   时间:2020-07-17 19:33:34    阅读次数:243
Java String类
代码中遇到字符串常量的时候,编译器会使用该值创建一个String对象。字符串连接可以用concat方法,也可以用运算符 +。 创建格式化字符串:可以用printf方法和format方法。String类使用静态方法format返回一个String对象而不是PrintStream对象。String类的静 ...
分类:编程语言   时间:2020-07-17 09:33:48    阅读次数:59
条件语句和循环语句
#打印九九乘法表#-*- coding :UTF-8 -*-#打印九九乘法表for i in range(1,10): for j in range(1,i+1): ##打印语句中,大括号及其里面的字符(称作格式化字段)将会被被 .format() 中的参数替换,注意有个点的 print('{}x{ ...
分类:其他好文   时间:2020-07-16 21:49:17    阅读次数:67
IfcFillAreaStyleTiles
IfcFillAreaStyleTiles通过样式化的二维几何体(称为tile)的重复模式定义IfcAnnotationFillArea的填充。递归模式由两个向量确定,它们以正则形式相乘。 这两个向量充当一个二维重复因子,它决定了瓷砖的八个新位置。 注:根据ISO 10303-46的定义: ①填充区 ...
分类:其他好文   时间:2020-07-16 18:10:59    阅读次数:53
13577条   上一页 1 ... 34 35 36 37 38 ... 1358 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!