惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
P
Proofpoint News Feed
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
L
LangChain Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
量子位
博客园 - Franky
S
Secure Thoughts
博客园 - 叶小钗
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
月光博客
月光博客
P
Palo Alto Networks Blog
大猫的无限游戏
大猫的无限游戏
Simon Willison's Weblog
Simon Willison's Weblog
AWS News Blog
AWS News Blog
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
MongoDB | Blog
MongoDB | Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
H
Help Net Security
I
Intezer
Apple Machine Learning Research
Apple Machine Learning Research
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
GRAHAM CLULEY
L
Lohrmann on Cybersecurity
Cyberwarzone
Cyberwarzone
S
Schneier on Security
The Register - Security
The Register - Security
The Hacker News
The Hacker News
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
DataBreaches.Net
P
Privacy International News Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Recorded Future
Recorded Future
A
About on SuperTechFans
Latest news
Latest news
IT之家
IT之家
T
The Exploit Database - CXSecurity.com
P
Privacy & Cybersecurity Law Blog
T
Tor Project blog
宝玉的分享
宝玉的分享
Martin Fowler
Martin Fowler
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
The GitHub Blog
The GitHub Blog
Cisco Talos Blog
Cisco Talos Blog
有赞技术团队
有赞技术团队

博客园 - 逍遥子

MSN空间上的以往技术贴整理 Link Java to Maple - 逍遥子 C++的多态的被覆盖的问题 类引用机制 - 逍遥子 - 博客园 防止盗链的简单技术 验证码(CAPTCHA)的破解技术 校内网狗狗刷骨机完全版(不再维护) - 逍遥子 - 博客园 HTTP外挂的简单实现 C++的中英文字符串表示(string,wstring) C++学习之2--10.09题目答案 C++学习之一--基本介绍 VC6的C++标准支持不完全 XML基础学习1 数论中求公因子、求模逆的算法 QuickSort和MergeSort算法及其效率比较源代码 继承、重载运算符、虚函数与向量、矩阵运算 数据库时间段分组查询解决方法和数据转储方法 Java 通配符匹配查找文件 动态加载Java运行环境和运行实例
下面内容为C++的教学
逍遥子 · 2008-09-21 · via 博客园 - 逍遥子

以下内容为大一C++课程的教学内容

本来想使用校内服务器做个主页的,但是觉得使用博客园更加方便,尤其是其代码功能。

测试一下各种内容

flash内容

代码内容

#include <iostream>
#include
<windows.h>
using  std::cout;
using std::endl;
using std::cin;
int main(){
    STARTUPINFO si 
= sizeof(si) };
    PROCESS_INFORMATION pi;
    
if(::CreateProcess(NULL,"C:\\WINDOWS\\system32\\notepad.exe",NULL,NULL,false,CREATE_NO_WINDOW,NULL,NULL,&si,&pi)){
        CloseHandle(pi.hThread);
        CloseHandle(pi.hProcess);
    }

    
else{
        cout
<<"Create Failed\n"<<endl;
    }

   
//system("pause");
}

插入链接

上海交大动漫下载 

插入图片

测试一下文本

The BASIC (Beginner's All-purpose Symbolic Instruction Code) programming language was developed in the mid-1960s at Dartmouth College as a means of writing simple programs. BASIC's primary purpose was to familiarize novices with programming techniques. Microsoft's Visual Basic language, introduced in the early 1990s to simplify the development of Microsoft Windows applications, has become one of the most popular programming languages in the world.

Microsoft's latest development tools are part of its corporate-wide strategy for integrating the Internet and the Web into computer applications. This strategy is implemented in Microsoft's .NET platform, which provides developers with the capabilities they need to create and run computer applications that can execute on computers distributed across the Internet. Microsoft's three primary programming languages are Visual Basic .NET (based on the original BASIC), Visual C++ .NET (based on C++) and C# (a new language based on C++ and Java that was developed expressly for the .NET platform). Developers using .NET can write software components in the language they are most familiar with and then form applications by combining those components with components written in any .NET language.