码迷,mamicode.com
首页 >  
搜索关键字:__main__    ( 65088个结果
如何:调试 Windows 服务应用程序
如何:调试 Windows 服务应用程序 https://docs.microsoft.com/zh-cn/dotnet/framework/windows-services/how-to-debug-windows-service-applications 官网地址 <main id="main" ...
分类:Windows程序   时间:2021-03-31 12:23:33    阅读次数:0
C#中AppDomain.CurrentDomain.BaseDirectory及各种路径获取方法
C#中AppDomain.CurrentDomain.BaseDirectory及各种路径获取方法 https://www.360kb.com/kb/2_87.html // 获取程序的基目录。 System.AppDomain.CurrentDomain.BaseDirectory // 获取模块 ...
分类:移动开发   时间:2021-03-31 12:22:14    阅读次数:0
关于kratos的底层赋值参考
package main import ( "fmt" "time" ) func main() { s := NewServices( SetName("peter"), SetTimeout(time.Second*5), ) fmt.Println("name:", s.conf.Name) ...
分类:其他好文   时间:2021-03-31 12:16:53    阅读次数:0
Hello World
HelloWorld 随便新建一个文件夹,存放代码 如:Code\ 新建一个Java文件 文件后缀名为.java Hello.java [注意点]系统可能没有显示文件后缀名,我们需要手动打开 编写代码 public class Hello{ public static void main(Strin ...
分类:其他好文   时间:2021-03-31 12:05:24    阅读次数:0
Android系统启动:2-Init篇
Android系统启动:Init篇 原文:http://gityuan.com/2016/02/05/android-init/ 概述 init进程是Linux系统中用户空间的第一个进程,进程号固定为1。Kernel启动后,在用户空间启动init进程,并调用init中的main()方法执行init进 ...
分类:移动开发   时间:2021-03-31 12:02:01    阅读次数:0
归并排序java实现
public class MergeSort { //基本思想为分治法,将有序的子序列合并,得到有序的序列。先使每个子序列有序,再使子序列段间有序。 //当有 n 个记录时,需进行 logn 轮归并排序,每一轮归并比较次数不超过 n,元素移动次数为 n,因此时间复杂度为 O(nlogn)。 //归并 ...
分类:编程语言   时间:2021-03-31 12:01:17    阅读次数:0
搞懂二分查找
class Solution { public static void main(String[] args) { int[] arr = new int[]{0, 1, 2, 2, 2, 3, 4, 5}; //int index = binarySearch(arr, 2); //int ind ...
分类:其他好文   时间:2021-03-31 11:46:55    阅读次数:0
如何看待malloc产生内存碎片
上代码直接研究: int main() { int *heap_d; int *heap_e; int *heap_f; heap_d = (int *)malloc(10); heap_e = (int *)malloc(10); printf("The d address is %p\n",he ...
分类:其他好文   时间:2021-03-30 13:44:13    阅读次数:0
[ICPC2018西安D] Deja vu of … Go Players - 博弈
有两堆棋子,第一个人有n堆,第二个人有m堆,每人每次能选一堆拿任意多个,第一个人先拿,拿完赢,问第一个人是否能赢 ...
分类:其他好文   时间:2021-03-30 13:31:20    阅读次数:0
实验2 c语言中的表达式及输入输出函数编程应用
任务一 #include <stdio.h> int main() { int num; scanf("%d",&num); printf("2049%04d\n",num); scanf("%d",&num); printf("2049%04d\n",num); scanf("%d",&num); ...
分类:编程语言   时间:2021-03-30 13:15:41    阅读次数:0
65088条   上一页 1 ... 65 66 67 68 69 ... 6509 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!