幽默:程序员的进化
高中时期
10 PRINT "HELLO WORLD"
20 END
大学新生
program Hello(input, output)
begin
writeln(\'Hello World\')
end.
高年级大学生
include
int main(void)
{
printf("Hello, world!\n");
return 0;
}
职业新手
#include
void main(void)
{
char *message[] = {"Hello ", "World"};
int i;
for(i = 0; i < 2; ++i)
printf("%s", message[i]);
printf("\n");
}
职业老手
#include
#include
using namespace std;
class string
{
private:
int size;
char *ptr;
string() : size(0), ptr(new char[1]) { ptr[0] = 0; }
string(const string &s) : size(s.size)
{
ptr = new char[size + 1];
strcpy(ptr, s.ptr);
}
~string()
{
delete [] ptr;
}
friend ostream &operator
转载于酷壳CoolShell 无删改 仅以此纪念陈皓(左耳朵耗子)
月薪 2 万在 V2EX 里属于什么水平? 另外,v2ex 的薪资水平对于国内程序员薪资水平有多少参考价钱,是偏高还是偏低? 稍微补充一下,13 薪,大小周不加班,到手大概 …
需求: 最近入手的 NAS ,E5-2660v2 cpu ,在进行视频转码的时候无法使用硬件加速,全靠 cpu 软件解码,效率比较低,看 Jellyfin 官网也有统计 Nvi…
使用了代理池,会被发现吗? 爬哪个网站呀 取决于你爬什么 爬企业信息网站,具体就不透露了,禁止🎣 盲猜企查查 中华人民共和国反电信网络诈骗法(草案)第十二条:任何单位…