码迷,mamicode.com
首页 >  
搜索关键字:is not a package    ( 34766个结果
[Go] go下实现md5加密
下面这个工具包下的函数 package utils import ( "crypto/md5" "encoding/hex" ) //md5加密 func Md5(src string) string { m := md5.New() m.Write([]byte(src)) res := hex. ...
分类:其他好文   时间:2020-12-14 13:19:12    阅读次数:3
go plugin
Go的plugin .so文件的生成 首先创建一个mingTest包,包中创建remainder.go文件 文件内容如下: package main import "fmt" func GetRemainder() { fmt.Println(150%500) } remainder.go文件作为生 ...
分类:其他好文   时间:2020-12-14 13:16:02    阅读次数:2
安卓 页面
package com.example.aaa; import com.example.test.R; import android.os.Bundle; import android.app.Activity; import android.view.Menu; public class Main ...
分类:移动开发   时间:2020-12-11 12:36:00    阅读次数:22
kubeadm安装k8s及依赖包conntrack、kubernetes-cni
如安装时,出现如下错误:Error:Package:kubelet-1.19.2-0.x86_64(kubernetes)Requires:conntrackYoucouldtryusing--skip-brokentoworkaroundtheproblemYoucouldtryrunning:rpm-Va--nofiles--nodigest解决方法:下载yum源,安装依赖包cd/etc/yu
分类:Web程序   时间:2020-12-11 11:43:11    阅读次数:8
jdbc---查询语句的使用(executeQuery)
package com.syy;import domain.student;import java.sql.*;import java.util.ArrayList;public class JdbcDemo3 { public static void main(String[] args)thro ...
分类:数据库   时间:2020-12-10 11:31:59    阅读次数:10
反射Class对象功能Field、Constructor、Method
获取成员变量们代码演示: package cn.chunzhi.reflect; import cn.chunzhi.domain.Person; import java.lang.reflect.Field; public class Test02ReflectField { public sta ...
分类:其他好文   时间:2020-12-10 11:31:20    阅读次数:8
105_对个对象指向相同
1 package MyClassTry; 2 /* 3 创建对象 4 格式:类名 对象名 = new 类名(); 5 范例:Phone p = new Phone(); 6 7 使用对象 8 1.使用成员变量 9 格式:对象名.变量名 10 范例:p.brand 11 2.使用成员方法 12 格式 ...
分类:其他好文   时间:2020-12-10 11:29:02    阅读次数:3
Scanner对象 next( )与nextLine( )的区别
Scanner对象 next( )与nextLine( ) next( ) package com.singer.scanner; import java.util.Scanner; public class Demo01 { public static void main(String[] arg ...
分类:其他好文   时间:2020-12-10 10:56:10    阅读次数:5
手动安装Package Control
浏览器输入https://packagecontrol.io/,进去之后有个Install now: 点击Package Control.sublime-package: 点击Perferences: 点击Browse Packages: 会跳转到一个文件夹,里面有个User的文件夹,但是这不是我们 ...
分类:其他好文   时间:2020-12-10 10:51:31    阅读次数:2
冒泡、选择、插入、快速排序
package paixu; import java.util.Random; public class test { public static void main(String[] args) { // TODO Auto-generated method stub int[] a={34,45 ...
分类:编程语言   时间:2020-12-10 10:40:34    阅读次数:6
34766条   上一页 1 ... 73 74 75 76 77 ... 3477 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!