码迷,mamicode.com
首页 >  
搜索关键字:setw    ( 350个结果
c++格式化输出
以下操作符的使用必须要引入头文件<iomanip> 输出操作符号: 流操作符 描述 setw(n) 为下一个值的输出设置最小打印字段宽度为n fixed 以固定点(例如小数点)的形式显示浮点数 showpoint 显示浮点数的小数点和尾数0,即使没有小数点部分 setprecision(n) 设置浮 ...
分类:编程语言   时间:2020-03-30 09:41:13    阅读次数:80
SpringBoot的java打印票据-3
配置打印xml文件并解析 打印东西,先设置纸张大小,各种参数。若把数字直接填写到打印过程,之后的更改比较麻烦,这里配置一个xml文件,所有的参数都从这里取出打印。 1.构建printSettings.xml文件,放置于resources中。 <print> <!-- 打印机设置 --> <choos ...
分类:编程语言   时间:2020-03-28 01:05:52    阅读次数:98
脱坑记录--- removeEventListener 移除事件监听失败的经历--vue--keep-alive-----完美实现echarts自适应屏幕~~~~
下面开始讲述事情经过~~~~ 页面代码是这样的 <template> <page-view :title="title"> <div id="myChart" ref="mapBox" style="width: 100%; height: 500px"></div> </page-view> </ ...
分类:其他好文   时间:2020-03-21 18:08:49    阅读次数:87
pyqt5学习之QRadioButton
QRadioButton继承于QAbstractButton;一般用于给用户提供若干选项中的单选操作案例 from PyQt5.Qt import * import sys app = QApplication(sys.argv) window = QWidget() window.setWindo ...
分类:其他好文   时间:2020-03-18 09:35:11    阅读次数:46
R语言 平稳性检验 差分
data = read.csv("/Users/Mac/Desktop/xu.csv")library(tseries)x=diff(data$lnx1)setwd("/Users/Mac/Desktop/") 输出在桌面write.table(x,"sample1.csv",sep=",") 输出 ...
分类:编程语言   时间:2020-03-10 22:00:19    阅读次数:346
Flink用户画像系统之实时品牌爱好
技术点:springcloud + kafka + hbase + mogodb 1、建立实体对象 浏览商品行为 ScanProductLog 收藏商品行为 CollectProductLog 购物车行为 BuyCartProductLog 关注商品行为 AttentionProductLog 2、 ...
分类:其他好文   时间:2020-02-23 14:57:19    阅读次数:95
c++ cout输出不足位补0 setw、setfill
头文件:<iomanip> 函数:setw(int n) 函数:setfill(char c) cout<<setw(8)<<setfill('0')<<123<<endl; 输出:00000123 C语言 printf("%08d \n",123); 输出:00000123 在C++中setw(i ...
分类:编程语言   时间:2020-02-20 00:11:01    阅读次数:367
C# WinForm MessageBox.Show显示在窗体中间
一、新建MessageBoxEx类,并添加以下代码。 using System; using System.Windows.Forms; using System.Text; using System.Drawing; using System.Runtime.InteropServices; na ...
分类:Windows程序   时间:2020-02-14 18:24:53    阅读次数:214
PyQt5复杂控件(树控件、选项卡控件(滚动条控件、多文档控件、停靠控件)
1、树控件的基本使用方法QTreeWidget'''QTreeWidget树控件的使用方法添加图标,添加表格,添加复选框等'''from PyQt5.QtWidgets import *from PyQt5.QtCore import Qtfrom PyQt5.QtGui import QIcon, ...
分类:其他好文   时间:2020-02-13 12:47:44    阅读次数:165
PyQt5打印机
1、打印机操作(打印默认文本里面的内容)from PyQt5 import QtGui,QtWidgets,QtPrintSupportfrom PyQt5.QtWidgets import *import sysclass Printsupport1(QMainWindow): def __ini ...
分类:其他好文   时间:2020-02-12 11:19:55    阅读次数:220
350条   上一页 1 2 3 4 5 6 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!