MFCVisual Studio 2008CString 的 Format
中不能这样存在str.Format(_T("Cool(\%)")); 或者str.Format(_T("Cool(%)"));
即format非CString类型值时不能带%改:str = (_T("Cool(\%)"));
分类:
其他好文 时间:
2014-06-16 00:10:27
阅读次数:
234
先把修改commit掉,然后生产修改patch给提交代码的同事,具体操作步骤如下:
修改代码的同事:
git format-patch al821_xxx origin/al821_xxx
会生成:0001-HQ00656135-xxx-al821_xxx.patch这样的patch文件
把这个patch给提交代码的同事
提交代码的同事,执行:
git am 0001-HQ006561...
分类:
其他好文 时间:
2014-06-15 20:13:56
阅读次数:
159
string sqldatabase =
string.Format(dr["sql"].ToString(), drpat["PATIENT_ID"].ToString()); string
tablename = dr["SQL_NAME"].ToString(); DataT...
分类:
其他好文 时间:
2014-06-13 20:20:27
阅读次数:
239
今天,我在写C#代码时,突然发现一个最熟悉的陌生人 ——
string.Format。在写C#代码的日子里,与它朝夕相伴,却没有真正去了解它。只知道在字符串比较多时,用它比用加号进行字符串连接效率更高(当然也更方便)。可是却从来没有问过为什么?在生活中也有类似的现象,与你朝夕相处、你最熟悉的人,你往...
分类:
其他好文 时间:
2014-06-13 18:54:23
阅读次数:
304
取得当前时间用 now() 就行。在数据库中格式化时间 用DATE_FORMA T(date,
format) .根据格式串format 格式化日期或日期和时间值date,返回结果串。 可用DATE_FORMAT( ) 来格式化DATE 或DATETIME
值,以便得到所希望的格式。根据forma....
分类:
数据库 时间:
2014-06-13 18:26:32
阅读次数:
338
原题地址:https://oj.leetcode.com/problems/text-justification/题意:Given
an array of words and a lengthL, format the text such that each line has
exactlyLcha...
分类:
编程语言 时间:
2014-06-12 15:12:05
阅读次数:
296
tablib简介-----------Tablib is a format-agnostic
tabular dataset library, written in Python.Tablib
是一个格式未知的表格操作库,使用python编写,目前(2014-06-11)支持如下格式:Excel 、...
分类:
其他好文 时间:
2014-06-12 09:08:53
阅读次数:
190
原文地址:http://elinux.org/Debugging_by_printing#Usage
If variable is of Type, use printk format
specifier:----------------------------------------------....
分类:
其他好文 时间:
2014-06-12 08:17:15
阅读次数:
297