会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
_萧朗
博客园
首页
新随笔
新文章
联系
订阅
管理
上一页
1
2
3
4
5
6
下一页
2020年1月16日
C++ 语言基础
摘要: C++ 基础语言: /* 多行注释 */ //单行注释 1.程序开始 #include <iostream> using namespace std; int main() cout << "Hello, world!" << endl; return 0; } 2.C++ 完全支持面向对象的程序设
阅读全文
posted @ 2020-01-16 15:54 _萧朗
阅读(431)
评论(0)
推荐(0)
编辑
2020年1月15日
CSS语言基础
摘要: CSS基础: 1./* */ 注释 2.#para1{} <p id="para1"> </p> 3.p.center{} <p class="center"> </p> /*仅限p有效*/ .center{} <p class="center"> </p> 1.CSS 背景属性 backgroun
阅读全文
posted @ 2020-01-15 14:33 _萧朗
阅读(200)
评论(0)
推荐(0)
编辑
2020年1月13日
HTML语言基础
摘要: HTML语言基础: <!--要注释的内容 --> 注释 <!DOCTYPE> 声明html文档 <h1--h6> 标题声明 <p> 文字编辑 <b> 文字加粗 </b> </p> <ul> 文字编辑 <b> 文字加粗 </b> </p> <a herf="http://www....."> 页面连接
阅读全文
posted @ 2020-01-13 15:51 _萧朗
阅读(268)
评论(0)
推荐(0)
编辑
2020年1月10日
lua 语言基础
摘要: 1.变量定义: num = 2+2 num = "2"+2 num = "2"+"2" str = "string"..'string' str = [[ string ]] 2.定义表格: tab = {k="kk",v="vv"} tab = {k="kk","vv"} tab = {"kk".
阅读全文
posted @ 2020-01-10 14:54 _萧朗
阅读(218)
评论(0)
推荐(0)
编辑
2020年1月9日
C语言基础
摘要: 1.#include <stdio.h> //头文件.h printf("%d 的阶乘为 %f\n", i, factorial(i)); 当上面的代码被编译和执行时,它会产生下列结果: 15 的阶乘为 1307674368000.000000 int main( ) { printf( "hell
阅读全文
posted @ 2020-01-09 10:37 _萧朗
阅读(239)
评论(0)
推荐(0)
编辑
2020年1月2日
文件夹目录排序
摘要: using System;using System.Collections.Generic; namespace Microsoft.Xna.User.GraphicsDeviceUserControl{ public class FilesNameSort : IComparer<string>
阅读全文
posted @ 2020-01-02 16:41 _萧朗
阅读(423)
评论(0)
推荐(0)
编辑
2019年9月23日
C#调用Server_SQL
摘要: C#调用Server_SQL: SqlCommand:数据库命令行语句 //数据库路径 static string GetConnectString() { return "data source=192.168.0.96;initial catalog=haha;user id=sa;pwd=zh
阅读全文
posted @ 2019-09-23 17:44 _萧朗
阅读(475)
评论(0)
推荐(0)
编辑
SQL语言基础
摘要: SQL 关键字 CREATE DATABASE - 创建新数据库ALTER DATABASE - 修改数据库CREATE TABLE - 创建新表ALTER TABLE - 变更(改变)数据库表DROP TABLE - 删除表CREATE INDEX - 创建索引(搜索键)DROP INDEX -
阅读全文
posted @ 2019-09-23 15:40 _萧朗
阅读(107)
评论(0)
推荐(0)
编辑
2019年6月20日
批量修改文件名
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi
阅读全文
posted @ 2019-06-20 16:58 _萧朗
阅读(211)
评论(0)
推荐(0)
编辑
2019年6月12日
快捷键Alt、Shift、Ctrl 点击事件
摘要: //场景初始化函数public StartScene(){ this.KeyDown += ModelViewerControl_KeyDown; his.KeyUp += ModelViewerControl_KeyUp;} bool alt_key_flag = false; bool shif
阅读全文
posted @ 2019-06-12 16:07 _萧朗
阅读(405)
评论(0)
推荐(0)
编辑
上一页
1
2
3
4
5
6
下一页