最新文章第4页
C语言中的空指针NULL 与 void指针-天煜博客

C语言中的空指针NULL 与 void指针

空指针NULL 在C语言中,如果一个指针不指向任何数据,我们就称之为 空指针 ,用 NULL 表示。例如: int *p = NULL; 注意区分大小写,null 没有任何特殊含义,只是一个普通的标识符。 NULL ...
编程麻瓜的头像-天煜博客编程麻瓜6年前
0675
常见地理坐标系概览与对比-天煜博客

常见地理坐标系概览与对比

一、按表示方式分类1. 大地坐标系(Geodetic Coordinate System)采用经度、纬度、高程表示位置基于椭球体模型示例:116.391°E, 39.907°N2. 地心坐标系(Earth-Centered, Earth-Fixed, ECEF)...
编程麻瓜的头像-天煜博客编程麻瓜1年前
027413
推荐一款开源的截图工具火焰截图Flameshot-天煜博客

推荐一款开源的截图工具火焰截图Flameshot支持Linux和Windows

在Ubuntu环境下,我挺喜欢使用这个软件的。安装也挺简单的,直接在终端运行命令即可。 sudo apt install flameshot Flameshot 自带一系列非常好的功能,例如: 可以进行手写 可以划直线 可以画...
C语言练习题-天煜博客

C语言练习题数组

/** * File Name: array.c * Author: Haoxuan * Mail: haovxuan@126.com * Created Time: 2020年12月17日 星期四 12时43分36秒 **/ #include #define SIZE 9 /* * 1、使用数组写出fibonacci数列...
编程麻瓜的头像-天煜博客编程麻瓜6年前
08414
linux usb驱动——host与device电路-天煜博客

linux usb驱动——host与device电路

host、device usb协议中,设备连接是主从模式,具体定义自行了解usb协议,比较直观的认识,如下: USB Host是指驱动过后,板子就可以连接USB接口连接的器件,读取和装载数据了。 USB Device是指...
最近偷懒了。。。接下来有空继续更新-天煜博客

最近偷懒了。。。接下来有空继续更新

前段时期因为要备案域名,所以关站了一段时间。嗯。。。。其实还是偷懒了。接下来会好好更新的。 加油!!!
编程麻瓜的头像-天煜博客编程麻瓜7年前
01727
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...
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...
线程同步之互斥锁:pthread_mutex_init,pthread_mutex_lock,pthread_mutex_unlock,pthread_mutex_destroy-天煜博客

线程同步之互斥锁:pthread_mutex_init,pthread_mutex_lock,pthread_mutex_unlock,pthread_mutex_destroy

主要函数说明 int pthread_mutex_init (pthread_mutex_t *__mutex,const pthread_mutexattr_t *__mutexattr)创建一个锁; int pthread_mutex_destroy (pthread_mutex_t *__mutex)销毁锁; int pth...
正则表达式的概念用常用匹配规则-天煜博客

正则表达式的概念用常用匹配规则

内容介绍 正则表达式 Date DateFormat Calendar   第1章  正则表达式 1.1      正则表达式的概念 正则表达式(英语:Regular Expression,在代码中常简写为regex)。 正则表达式是一...