主语的成分 名词 代词 非谓语动词 从句 帅气和强壮是他的特点 Handsome and strong are his nature. 上面这个句子是错误的,因为主语不能是形容词 改为: Handsomeness and strength are his nature. 或者是 Being hand ...
分类:
其他好文 时间:
2021-05-03 12:06:46
阅读次数:
0
public class oopDemo7 { public static void main(String[] args) { oopDemo71 oopDemo7 = new oopDemo71("罗hz"); System.out.println(oopDemo7.name); }} publ ...
分类:
其他好文 时间:
2021-05-03 11:56:18
阅读次数:
0
1.引用 npm install vue-paypal-checkout 2.定义paypal.js import Vue from 'vue' import PayPal from 'vue-paypal-checkout' Vue.component('paypal-checkout', Pay ...
分类:
Web程序 时间:
2021-04-30 12:32:47
阅读次数:
0
在vue中我们经常会使用/Id/:id 尽管我们改变了id传入了不同的路由,但我们还是使用的同一个view。 当我们多个路由公用一个组件时,钩子函数(created和mounted)只会触发一次,我们如果想要多次触发,有两种方法: 第一种方法: 在app.vue中添加: <router-view : ...
分类:
其他好文 时间:
2021-04-30 12:16:59
阅读次数:
0
```javapublic class oopDemo6Student { String name; int age; public void study(){ System.out.println(this.name+"在学习"); }}//person >名字、生日、身高、体重//类(抽象) > ...
分类:
其他好文 时间:
2021-04-30 12:16:19
阅读次数:
0
public class oopDemoStufent2 { //static是一个静态方法 public static void say1(){ System.out.println("学生说好"); }} public class oopDemoStudent { //没有static就是非静态 ...
分类:
其他好文 时间:
2021-04-30 12:15:30
阅读次数:
0
压力测试工具 jmeter http stree 硬件测试 mysqlslap 数据库压力测试工具 ####tomcat配置参数优化 #####1.注释8009 <!-- <Connector protocol="AJP/1.3" address="::1" port="8009" redirect ...
分类:
其他好文 时间:
2021-04-30 12:13:59
阅读次数:
0
Preface 给出一种耗时更大的"新颖“做法。 Description 给你一个字符串,可以用题目中给的方式进行合并,问如何合并使得合并后的字符串长度最短。 Method 我们看到了 \(1<=N<=50\) ,又注意到题目是对区间进行操作,我们想到了什么?区间DP。 DP sequence 如果 ...
分类:
其他好文 时间:
2021-04-30 12:01:40
阅读次数:
0
package com.itheima.demo02; public class ShangYingDianYing { public static void main(String[] args) { String starring = "刘鑫 张玉提 高源"; System.out.printl ...
分类:
其他好文 时间:
2021-04-30 11:59:42
阅读次数:
0
package com.itheima.demo02; public class GeRenXinXi { public static void main(String[] args) { String name ="张三"; System.out.println(name); int age = ...
分类:
其他好文 时间:
2021-04-30 11:58:53
阅读次数:
0