zoukankan
html css js c++ java
MFC 的几个常用函数,用来计算文件大小,下载速度,转换时间的
//获取文件的大小,并以KB 或 MB 来表示 CString GetFileSize(LONG size) { CString _size; //判断大小有没有超过1 if (size<(1024*1024)) { _size.Format("%.2lfKB",size/1024.0); }else if(1024*1024*1024) { _size.Format("%.2lfMB",(size/1024.0)/1024.0); }else { _size.Format("%.2lfGB",(size/1024.0/1024.0)/1024.0); } return _size; } //获取下载速度的字符串 CString GetFileTranSpeed(DWORD size,DWORD time) { CString _speed; //判断时间是否为0 if (time>0){ if (size/1024*1000.0/time<1024) { _speed.Format("%.2lfKB/s",size/1024*1000.0/time); }else { _speed.Format("%.2lfMB/s",(size/1024)*1000.0/time); } }else { return _speed = "0KB/s"; } return _speed; } //获取时间的字符串 CString GetTimeFormatStr(LONG time) { CString _time; int hh = time/3600; int mm = (time-hh*3600)/60; int ss = time%60; _time.Format("%d%d:%d%d:%d%d",hh/10,hh%10,mm/10,mm%10,ss/10,ss%10); return _time; }
查看全文
相关阅读:
python:dataclass装饰器详
python : tuple 相加,注意逗号
python itertools chain()
Python classmethod 修饰符
ILMerge
a标签点击后页面显示个false
Visual Studio自动生成XML类和JSON类
元组简单示例
jQuery插件示例笔记
jQuery中的Ajax全局事件
原文地址:https://www.cnblogs.com/javawebsoa/p/2458432.html
最新文章
SQL server(五)函数的使用
SQL server(四)常用命令
SQL server(三)流程控制
SQL server(二)运算符
C#类的初始化过程
清cookie,login.aspx页面搜索下cookie关键字看到loginToken
http://blog.csdn.net/hsg77/article/details/30250111
JavaScript进阶之路——认识和使用Promise,重构你的Js代码
AxureRP7.0视频教程
Javascript中bind、call、apply函数用法
热门文章
Javascript的this用法
深入浅出 JavaScript 中的 this
备忘录模式
看看
Python ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()
JAVA:@WebFilter上不要加@Component!!!!
pytorch : _MultiProcessingDataLoaderIter
pytorch :sampler里的随机int
python:pytorch和numpy的张量运算符号~ 仅支持bool或者int的tensor
BERT:pytorch版,记录一次寻找cls.predictions.bias如何被从全0到load的过程
Copyright © 2011-2022 走看看