相关文章
flutter 提示框1 AlertDialog
AlertDialog写提示框
import package:flutter/material.dart;void main() {runApp(MyApp());
}class MyApp extends StatelessWidget {overrideWidget build(BuildContext context) {return MaterialApp(home: Scaffold(appBar: AppBar(title: Text(AlertDialog Example),),bo…
编程日记
2024/12/22 21:58:14
Retrieve The N-th String Term——C语言提高题
一、原题
链接:Training on Retrieve The N-th String Term | Codewars This Kata requires you to retrieve the n-th string from a character array, where a null character separates each string, and a double null character terminates the character arr…
编程日记
2024/12/9 17:40:25
时间戳有什么重要作用
1 问题:
今天做前后端联调的时候,发现请求url路径后面跟了一段数据:“t1725537660463”,我蒙圈了,为什么是一段乱码 明明我的后端写了id这个参数,而且前端传给后端的参数只有这个7,那“ &#…
编程日记
2024/12/10 14:17:48
RK3588 系列之4—入门级完整demo项目
RK3588 系列之4—入门级完整demo 1.test1.cc2.CMakeLists.txt3.build-linux_RK.sh参考文献 该微型项目有三部分组成:
├── build-linux_RK.sh
├── CMakeLists.txt
└── test1.cc1.test1.cc
#include <iostream>
#include <string>
#include &l…
编程日记
2024/12/21 23:52:57
Keil发现Error: C9555E: Failed to check out a license
遇到这样的问题 解决办法: 换成这个版本 然后重新用keygen生成license
编程日记
2024/12/21 9:05:51
数论——中国剩余定理(CRT)
今天也是简简单单学了一下CRT,我感觉这个东西考的不多,其实理解一下,考的时候能记住就OK了,但是还是要理解其中的奥妙
话不多说,先来看中国剩余定理
引例:
有一天,传闻在韩信在井陉之战的时…
编程日记
2024/12/15 20:56:13
问:你知道IO和NIO有哪些区别不?
一、先表示一下_
Java IOJava NIO主要特点面向流(Stream)的I/O操作面向缓冲区(Buffer)和通道(Channel)的I/O操作,支持非阻塞I/O和选择器(Selector)常用方法InputStream、…
编程日记
2024/12/20 15:55:44