简介:Spring Boot 是一个用于快速构建基于 Spring 框架的应用程序的工具,通过提供一系列的注解,它使得开发者可以更加轻松地配置、管理和控制应用程序的各种行为。以下是一些常用的 Spring Boot 注解,以及它们的功能和示例代码&am…
1.先 go get 安装 包
go get github.com/getlantern/systray2.使用的代码
func main() {fmt.Println("开始")systray.Run(onReady, onExit)
}func onReady() {systray.SetIcon(icon.Data)systray.SetTitle("Awesome App")systray.SetTooltip("Prett…
一、简单文件的编译
有如下的目录结构: 其中 helloworld.cpp如下:
#include <iostream>
using namespace std;
int main()
{printf("hello world my name is Ty!");return 0;
}CMakeLists.txt如下:
cmake_minimum_requir…