protected void Button3_Click(object sender, EventArgs e) { if (this.TextBox1.Text.ToString().Trim()=="101") { this.Button1.Visible = true; this.Button ...
分类:
其他好文 时间:
2020-02-05 13:17:43
阅读次数:
56
protected void Button2_Click(object sender, EventArgs e) { if (DropDownList1.SelectedIndex>0) { Session["kk"] = this.DropDownList1.SelectedValue.Trim( ...
源程序: #include <iostream>using namespace std; class CBase{protected: int n;public: CBase(int i) :n(i) {} void Print() { cout << "CBase:n=" << n << endl ...
分类:
其他好文 时间:
2020-02-04 21:58:22
阅读次数:
69
1、创建侧滑菜单Fragment package com.example.didida_corder; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import and ...
分类:
移动开发 时间:
2020-02-04 18:49:24
阅读次数:
83
源程序: #include<iostream>using namespace std; class BaseClass1{protected: int v1, v2;public: BaseClass1(); BaseClass1(int, int); ~BaseClass1(); void Set ...
分类:
其他好文 时间:
2020-02-04 18:37:40
阅读次数:
70
解决办法:关闭selinux [root@k8s-master ~]# docker push 10.0.0.10:5000/nginx The push refers to a repository [10.0.0.10:5000/nginx] 22439467ad99: Retrying in ...
分类:
Web程序 时间:
2020-02-04 15:41:17
阅读次数:
402
在导入lfd 的lxml包的时候出现 UnicodeDecodeError: 'utf-8' codec can't decode byte 问题,这个时候需要检查电脑支持的包。我的电脑是amd64. 1 import pip._internal 2 print(pip._internal.pep4 ...
分类:
其他好文 时间:
2020-02-04 10:36:28
阅读次数:
86
前言:春招马上就要来了,准备了一些大厂面试题分享给大家,希望可以帮助到大家,不会做的不要急哦文末有答案分享,以及面试宝典pdf分享给大家1、面向对象的特征有哪些方面?2、访问修饰符public,private,protected,以及不写(默认)时的区别?3、String是最基本的数据类型吗?4、floatf=3.4;是否正确?5、shorts1=1;s1=s1+1;有错吗?shorts1=1;s
分类:
其他好文 时间:
2020-02-04 00:56:42
阅读次数:
99
1.概述 Unity自带cube模型,但是此文实现,分基础版和完善版。基础版不进行顶点法线计算,完善版会进行法线计算,结果会跟自带cube比较接近。 2.基础版Cube 2.1 基类 using System.Collections; using System.Collections.Generic ...
分类:
其他好文 时间:
2020-02-02 21:37:34
阅读次数:
67
概述 本文在上一篇平面圆形基础上生成平面环形。 代码 基类 using System.Collections; using System.Collections.Generic; using UnityEngine; [RequireComponent(typeof(MeshFilter),type ...
分类:
其他好文 时间:
2020-02-02 20:05:43
阅读次数:
147