会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
泥古拉斯赵四
博客园
首页
新随笔
联系
订阅
管理
2023年11月18日
nacos dubbo springboot
摘要: 按照视频教程一步一步弄完, nacos server起来了, 然后本地项目起来, 不管怎么弄, 服务列表里都没有这个服务。 后来仔细检查代码 发现, service 类上面没写@DubboService. .....
阅读全文
posted @ 2023-11-18 20:53 泥古拉斯赵四
阅读(11)
评论(0)
推荐(0)
2023年2月12日
C语言学习:复制文件2
摘要: 1 #include <stdio.h> 2 #include <io_utils.h> 3 #include <time_utils.h> 4 #include <locale.h> 5 6 #define COPY_SUCCESS 0 7 #define COPY_ILLEGAL_ARGUMEN
阅读全文
posted @ 2023-02-12 18:21 泥古拉斯赵四
阅读(23)
评论(0)
推荐(0)
C语言学习:读写一行字符
摘要: 1 #include <stdio.h> 2 #include <io_utils.h> 3 #include <errno.h> 4 #include <string.h> 5 6 void ReadFile1() { 7 FILE *file = fopen("CMakeLists.txt",
阅读全文
posted @ 2023-02-12 16:05 泥古拉斯赵四
阅读(81)
评论(0)
推荐(0)
C语言学习:复制文件
摘要: 1 #include <stdio.h> 2 #include <io_utils.h> 3 #include <errno.h> 4 #include <string.h> 5 6 #define COPY_SUCCESS 0 7 #define COPY_ILLEGAL_ARGUMENTS -1
阅读全文
posted @ 2023-02-12 15:52 泥古拉斯赵四
阅读(9)
评论(0)
推荐(0)
C语言学习:读写一个字符
摘要: 1 #include <stdio.h> 2 #include <io_utils.h> 3 #include <errno.h> 4 #include <string.h> 5 6 //void ReadFile() { 7 // FILE *file = fopen("CMakeLists.tx
阅读全文
posted @ 2023-02-12 15:35 泥古拉斯赵四
阅读(31)
评论(0)
推荐(0)
C语言学习: 文件流的缓冲
摘要: 没有缓冲 有了缓冲 创建file变量时,传入的参数: 可以用fflush, 清空缓冲区,让缓冲区内存的数据立刻打印出来。 1 #include <stdio.h> 2 #include <io_utils.h> 3 #include <errno.h> 4 #include <string.h> 5
阅读全文
posted @ 2023-02-12 15:05 泥古拉斯赵四
阅读(48)
评论(0)
推荐(0)
C语言学习:计算时间差
摘要: 1 #include <io_utils.h> 2 #include <time_utils.h> 3 #include <time.h> 4 5 #define PI 3.1415926 6 7 void DoHardWork() { 8 double sum = 0; 9 for (int i
阅读全文
posted @ 2023-02-12 13:33 泥古拉斯赵四
阅读(67)
评论(0)
推荐(0)
C语言学习:解析时间
摘要: 1 #define _XOPEN_SOURCE 2 3 #include <io_utils.h> 4 #include <time_utils.h> 5 #include <time.h> 6 7 int main() { 8 long_time_t current_time_in_ms = Ti
阅读全文
posted @ 2023-02-12 13:24 泥古拉斯赵四
阅读(42)
评论(0)
推荐(0)
C语言学习:格式化时间
摘要: 1 #include <io_utils.h> 2 #include <time_utils.h> 3 #include <time.h> 4 5 int main() { 6 long_time_t current_time_in_ms = TimeInMillisecond(); 7 int c
阅读全文
posted @ 2023-02-12 13:14 泥古拉斯赵四
阅读(51)
评论(0)
推荐(0)
C语言学习:获取日历时间
摘要: 时间戳表示从1970年1月1日到现在的秒数。 1 #include <io_utils.h> 2 #include <time_utils.h> 3 #include <time.h> 4 5 int main() { 6 time_t current_time; 7 time(¤t_t
阅读全文
posted @ 2023-02-12 13:06 泥古拉斯赵四
阅读(56)
评论(0)
推荐(0)
下一页
公告