🌟深入理解 C++ 左值与右值 —— 从 std::move 到函数重载的奥秘-天煜博客

🌟深入理解 C++ 左值与右值 —— 从 std::move 到函数重载的奥秘

在现代 C++ 开发中,理解左值(lvalue)与右值(rvalue)是掌握移动语义、完美转发和高性能编程的关键一步。本文将以一个简单的函数重载示例为起点,逐步揭开 C++ 值类别的神秘面纱。 📌 示例代...
C语言基础教程-天煜博客

C语言基础教程基本数据类型

在 C 语言中,数据类型指的是用于声明不同类型的变量或函数的一个广泛的系统。变量的类型决定了变量存储占用的空间,以及如何解释存储的位模式。C 中的类型可分为以下几种:序号类型与描述1基本...
记录一下在Ubuntu19.10下安装mysql8.0时候踩的坑-天煜博客

记录一下在Ubuntu19.10下安装mysql8.0时候踩的坑

安装mysql8.0之后与网上大多教程不同的是我没有遇到设置root密码的界面。 输入 sudo apt install mysql-server之后直接就安装成功了。 尝试了很多办法,都不能成功的修改root密码,直到参考这篇...
OpenCV-Python快速入门系列30案例:实时人脸检测-天煜博客

OpenCV-Python快速入门系列30案例:实时人脸检测

代码 视频和模型库在第一篇文章中有git地址。 import cv2 as cv # 模型路径 MODEL_BIN = 'models/face_detector/opencv_face_detector_uint8.pb' CONFIG_TEXT = 'models/face_detector/opencv_f...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(一)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(一)Getting Started

Here‘s the link to the main post. This post assumes that you have a Windows based host. I had completed the installation on Windows 10 running on a Lenovo laptop with a dual-core ...
OpenCV-Python快速入门系列04图像像素的读写操作-天煜博客

OpenCV-Python快速入门系列04图像像素的读写操作

修改像素值 通过索引直接修改像素值: 修改单个像素 image[100, 100] = [255, 0, 0] # 将 (100, 100) 位置的像素值改为蓝色 修改一块区域(ROI) image[50:150, 50:150] = [0, 255, 0] # 将 (50...
Ubuntu20.04修改终端字体的方法-天煜博客

Ubuntu20.04修改终端字体的方法

为什么要修改终端字体呢?因为我在使用vimplus的插件时候遇到了一个问题:插件中文显示乱码 在github找到的解决方案: 安装vimplus后Airline等插件有乱码,怎么解决? linux和mac系统需设置终端...
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(二)Creating the VM Shell File

Link to the main post Once you’ve pressed the enter key from the Part-1, you’ll start seeing the following on the command prompt: Starting the PeopleSoft Environment Setup Proces...
解决man手册在deepin环境下资料不全的问题-天煜博客

解决man手册在deepin环境下资料不全的问题

在deepin环境下查阅man手册时候,遇到问题:没有 fopen 的手册页条目 解决方法: sudo apt install manpages-de manpages-de-dev manpages-dev glibc-doc manpages-posix-dev manpages-posix
PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)-天煜博客

PeopleSoft 9.2 – PeopleTools 8.58 VirtualBox Installation(索引)Step By Step Guide

搬运备用 原文博客https://mani2web.wordpress.com/ Hello everyone! Hope everyone is doing good and staying safe!   Four years ago, I had shared a step-by-step guide for instal...