Skip to content

Commit fb8e23c

Browse files
committed
update categories
1 parent e332cdd commit fb8e23c

File tree

42 files changed

+252
-252
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+252
-252
lines changed

content/post/C++/2017-08-04-C++的string和char*并不隐式转换.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
layout: post
3-
cid: 421
4-
title: "C++的string和char*并不隐式转换"
5-
slug: 421
6-
date: 2017-08-04
7-
updated: 2017-08-04
8-
status: publish
9-
author: panda
10-
categories:
11-
- C++
12-
tags:
13-
---
14-
15-
1+
---
2+
layout: post
3+
cid: 421
4+
title: "C++的string和char*并不隐式转换"
5+
slug: 421
6+
date: 2017-08-04
7+
updated: 2017-08-04
8+
status: publish
9+
author: panda
10+
categories:
11+
- cpp
12+
tags:
13+
---
14+
15+
1616
# string转const char*
1717
```cpp
1818

content/post/C++/2017-08-05-_陷阱!如何实现Vector作为Class成员的初始化.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
layout: post
3-
cid: 422
4-
title: " 陷阱!如何实现Vector作为Class成员的初始化"
5-
slug: 422
6-
date: 2017-08-05
7-
updated: 2017-08-05
8-
status: publish
9-
author: panda
10-
categories:
11-
- C++
12-
tags:
13-
---
14-
15-
1+
---
2+
layout: post
3+
cid: 422
4+
title: " 陷阱!如何实现Vector作为Class成员的初始化"
5+
slug: 422
6+
date: 2017-08-05
7+
updated: 2017-08-05
8+
status: publish
9+
author: panda
10+
categories:
11+
- cpp
12+
tags:
13+
---
14+
15+
1616
C++真是巨坑满地跑,稍不注意就掉坑里了。
1717
先来看一段代码
1818
```cpp

content/post/C++/2017-08-22-Qt5.8_Patch:_Missing_"qtmultimediadefs.h".md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updated: 2017-08-22
88
status: publish
99
author: panda
1010
categories:
11-
- C++
11+
- cpp
1212
tags:
1313
---
1414

content/post/C++/2017-09-03-Qt使用预编译头PCH及多核编译加快编译.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
---
2-
layout: post
3-
cid: 427
4-
title: "Qt使用预编译头PCH及多核编译加快编译"
5-
slug: 427
6-
date: 2017-09-03
7-
updated: 2017-09-03
8-
status: publish
9-
author: panda
10-
categories:
11-
- C++
12-
tags:
13-
- panda
14-
---
15-
16-
1+
---
2+
layout: post
3+
cid: 427
4+
title: "Qt使用预编译头PCH及多核编译加快编译"
5+
slug: 427
6+
date: 2017-09-03
7+
updated: 2017-09-03
8+
status: publish
9+
author: panda
10+
categories:
11+
- cpp
12+
tags:
13+
- panda
14+
---
15+
16+
1717
最近在用Qt做一些小项目的时候,发现Qt的编译很慢,理论上来说不应该有这样的问题的。查了一下Qt的文档以及在知乎上的问题[为什么 Qt Creator 的编译如此之慢?][1],调整了一些设置以后好多了。
1818

1919
问题主要是出在在没有设置的情况下每一次编译Qt都会编译所有文件,这是不应该的。

content/post/C++/2018-01-24-C++_lambda初探.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
---
2-
layout: post
3-
cid: 434
4-
title: "C++ lambda初探"
5-
slug: 434
6-
date: 2018-01-24
7-
updated: 2018-01-24
8-
status: publish
9-
author: panda
10-
categories:
11-
- C++
12-
tags:
13-
---
14-
15-
1+
---
2+
layout: post
3+
cid: 434
4+
title: "C++ lambda初探"
5+
slug: 434
6+
date: 2018-01-24
7+
updated: 2018-01-24
8+
status: publish
9+
author: panda
10+
categories:
11+
- cpp
12+
tags:
13+
---
14+
15+
1616
`lambda`表达式主要用于一次性的函数,最常见的应用就是在`remove_if`,`find_if`这种需要predicator的函数中了。
1717

1818

content/post/C++/2018-01-24-C++模板函数的重载决议问题.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
---
2-
layout: post
3-
cid: 433
4-
title: "C++模板函数的重载决议问题"
5-
slug: 433
6-
date: 2018-01-24
7-
updated: 2018-01-24
8-
status: publish
9-
author: panda
10-
categories:
11-
- C++
12-
tags:
13-
- cpp
14-
- template
15-
---
16-
17-
1+
---
2+
layout: post
3+
cid: 433
4+
title: "C++模板函数的重载决议问题"
5+
slug: 433
6+
date: 2018-01-24
7+
updated: 2018-01-24
8+
status: publish
9+
author: panda
10+
categories:
11+
- cpp
12+
tags:
13+
- cpp
14+
- template
15+
---
16+
17+
1818
事情的起因是我在尝试实现`std::list`的过程中,我发现了其`insert`函数并不如我想象中的顺序工作。
1919

2020

content/post/C++/2019-01-07-CPP_Exercises.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
---
2-
layout: post
3-
cid: 435
4-
title: "CPP Exercises"
5-
slug: 435
6-
date: 2019-01-07
7-
updated: 2019-01-09
8-
status: publish
9-
author: panda
10-
categories:
11-
- C++
12-
- LeetCode
13-
tags:
14-
---
15-
16-
1+
---
2+
layout: post
3+
cid: 435
4+
title: "CPP Exercises"
5+
slug: 435
6+
date: 2019-01-07
7+
updated: 2019-01-09
8+
status: publish
9+
author: panda
10+
categories:
11+
- cpp
12+
- LeetCode
13+
tags:
14+
---
15+
16+
1717
做一些CPP的练习。
1818
不讲究奇技淫巧,不讲究运行速度。
1919
以练习C++11的语法和强调代码的可读性为主要目标。

content/post/C++/2019-03-02-浅谈RAII和智能指针.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updated: 2019-03-02
88
status: publish
99
author: panda
1010
categories:
11-
- C++
11+
- cpp
1212
tags:
1313
---
1414

content/post/C++/2019-03-24-建立简单的带单元测试的CMake项目.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updated: 2019-04-04
88
status: publish
99
author: panda
1010
categories:
11-
- C++
11+
- cpp
1212
tags:
1313
---
1414

content/post/C++/2019-03-31-FakeSTL_From_Scratch____C++_从0开始写FakeSTL_[目录].md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updated: 2019-04-13
88
status: publish
99
author: panda
1010
categories:
11-
- C++
11+
- cpp
1212
- STL
1313
tags:
1414
- cpp

0 commit comments

Comments
 (0)