clapse's recent timeline updates
clapse

clapse

V2EX member #94013, joined on 2015-01-27 09:19:27 +08:00
clapse's recent replies
Sep 23, 2015
Replied to a topic by freaks 软件 折腾了好久,一个 xshell 竟然装不上,哎
64 位的话 msvcp110.dll 放 SysWOW64 试下
Jul 3, 2015
Replied to a topic by int64ago 问与答 程序猿面试自我介绍应该怎么说呢?
面试的时候让自我介绍不是为了给面试官留时间看简历准备发问的么?
@rundis 宏有嵌套规则,建议 看下 # 和 ## 的展开规则
@rundis ,抱歉,昨天读题能力被封印了

#include <stdio.h>
using namespace std;

#define LINETOSTR(LINE) #LINE
#define FILETOSTR(FILE) #FILE

#define LINE_FILE_PRINT(LINE,FILE) \
printf("Line %s of file %s",LINETOSTR(LINE),FILETOSTR(FILE))

#define LINE_FILE LINE_FILE_PRINT(__LINE__,__FILE__)


int main(void)
{
LINE_FILE;

return 0;
}
#define LINE_FILE(LINE,FILE) \
printf("Line %s of file %s",#LINE,#FILE)

int main(void)
{
LINE_FILE(21,"TEST");

return 0;
}
Apr 14, 2015
Replied to a topic by 1oscar 北京 北京码农,求一个二手 kindle
坐地铁有灯光可以入499的那款而不用纠结背光的问题吧
About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   5935 Online   Highest 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 14ms · UTC 01:58 · PVG 09:58 · LAX 18:58 · JFK 21:58
♥ Do have faith in what you're doing.