Serivice案例

news2024/11/25 20:35:21

Serivice启动方式案例

1.案例1:-start方式启动

1.1创建服务

//服务类
public class MyService extends Service {

    //创建服务调用一次
    @Override
    public void onCreate() {
    System.out.println("onCreate");
    Toast.makeText(this, "onCreate", Toast.LENGTH_SHORT).show();
    super.onCreate();
    }
    //创建服务
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
        //startId ONLY
        System.out.println("onStartCommend"+startId);
        Toast.makeText(this, "onStartCommend"+startId, Toast.LENGTH_SHORT).show();
        return super.onStartCommand(intent, flags, startId);
    }

    // 服务销毁
    @Override
    public void onDestroy() {
        //startId ONLY
        System.out.println("onDestory");
        Toast.makeText(this, "onDestory", Toast.LENGTH_SHORT).show();
        super.onDestroy();
    }

    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
}

1.2注册服务

<!--        注册服务-->
        <service android:name=".MyService"
            android:exported="true">
            <intent-filter>
                <action android:name="com.lxz.app10Service"/>
            </intent-filter>
        </service>

1.3设置布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="启动服务-显式"
        android:textSize="30dp"
        android:onClick="startService1"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="启动服务-隐式"
        android:textSize="30dp"
        android:onClick="startService2"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="停止服务1"
        android:textSize="30dp"
        android:onClick="stopService11"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="停止服务2"
        android:textSize="30dp"
        android:onClick="stopService22"
        />
</LinearLayout>

1.4设置Java代码

  • 设置按钮的事件监听
  • 设置每个按钮注册服务的方式,stratService
  • 设置服务的注销,stopService
//采用start的启动方式-采用隐式启动
public class MainActivity extends AppCompatActivity {
    private  Intent intent1=null;
    private  Intent intent2=null;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }


    //启动服务-显式
    public void startService1(View view) {
        intent1=new Intent();
        intent1.setClass(getApplicationContext(),MyService.class);
        startService(intent1);
    }

    //启动服务-隐式
    public void startService2(View view) {
        intent2=new Intent();
        intent2.setPackage("com.lxz.app10");
        intent2.setAction("com.lxz.app10Service");
        startService(intent2);
    }

    //停止服务
    public void stopService11(View view) {
        stopService(intent1);
    }
    //停止服务
    public void stopService22(View view) {
        stopService(intent2);
    }
}

1.5效果图

2.案例2:-bind方式启动进行数据运算

1.使用Service进行求和和阶乘的运算。

2.参考代码

  1. Service代码
//用于计算的service
public class Calculate extends Service {
    //便于调用结果
    private MyBinder myBinder=new MyBinder();
    //创建
    @Override
    public void onCreate() {
        System.out.println("onCreate");
        Toast.makeText(this, "onCreate", Toast.LENGTH_SHORT).show();
        super.onCreate();
    }

    //onBind
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        //接收传递的数据
        String str=intent.getStringExtra("code");
        System.out.println("onBind---"+"code="+str);
        Toast.makeText(this, "onBind---code="+str, Toast.LENGTH_SHORT).show();
        return myBinder;
    }

    //解绑
    @Override
    public boolean onUnbind(Intent intent) {
        System.out.println("onUnbind");
        Toast.makeText(this, "onUnbind", Toast.LENGTH_SHORT).show();
        return false;
    }
    //销毁
    @Override
    public void onDestroy() {
        System.out.println("onDestroy");
        Toast.makeText(this, "onDestroy", Toast.LENGTH_SHORT).show();
    }

    //内部类
    class MyBinder extends Binder {
        //返回Service对象
        public Calculate getService(){
            return Calculate.this;
        }
    }
    //方法:求和
    public int getSum(int i){
        int sum=0;
        for (int j=0;j<=i;j++){
            sum+=j;
        }
        return sum;
    }
    //方法:求阶乘
    public long getJieCheng(long i){
        long sum=1;
        for (long j=1;j<=i;j++){
            sum*=j;
        }
        return sum;
    }
}

  1. 注册信息

        <service android:name=".Calculate" />
  1. 主布局文件代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:orientation="vertical"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".CalculateActivity">
    <EditText
        android:id="@+id/textnumber"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="输入要计算的数字"
        android:gravity="center"
        android:textSize="30dp"
        android:inputType="numberSigned"
        android:maxLines="1"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="绑定服务"
        android:textSize="30dp"
        android:onClick="bindService11"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="求和"
        android:textSize="30dp"
        android:onClick="textgetSum"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="求阶乘"
        android:textSize="30dp"
        android:onClick="textgetJiecheng"
        />
    <TextView
        android:id="@+id/result"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:hint="输出信息"
        android:textSize="30dp"
        android:maxLines="1"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="解绑服务"
        android:textSize="30dp"
        android:onClick="unBindService11"
        />
</LinearLayout>
  1. 主布局文件的Java代码
//输出计算结果案例
public class CalculateActivity extends AppCompatActivity {
    //是不是注册标志
    private boolean flag=false;
    //Service
    Calculate service=null;
    //连接对象
    ConnectionUtil conn=null;
    //Mybinder对象,用于获取Service
    Calculate.MyBinder binder=null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_calculate);
    }


    //解绑服务
    public void unBindService11(View view) {
        if (flag){
            unbindService(conn);
            flag=!flag;
        }
        else
        {
      Toast.makeText(getApplicationContext(), "暂为可解绑的服务!", Toast.LENGTH_SHORT).show();
        }
    }

    //阶乘
    public void textgetJiecheng(View view) {
        if (flag){
            TextView textView=findViewById(R.id.textnumber);
            TextView result=findViewById(R.id.result);
            if (textView.getText().toString().trim().equals("")){
                Toast.makeText(getApplicationContext(), "请输入有效数字!", Toast.LENGTH_SHORT).show();
            }
            else{
                result.setText(service.getJieCheng( Long.parseLong(textView.getText().toString().trim()))+"");
            }
        }
        else
        {
            Toast.makeText(getApplicationContext(), "请先绑定服务!", Toast.LENGTH_SHORT).show();
        }
    }

    //求和
    public void textgetSum(View view) {
        if (flag){
            TextView textView=findViewById(R.id.textnumber);
            TextView result=findViewById(R.id.result);
            if (textView.getText().toString().trim().equals("")){
                Toast.makeText(getApplicationContext(), "请输入有效数字!", Toast.LENGTH_SHORT).show();
            }
            else{
                result.setText(service.getSum( Integer.parseInt(textView.getText().toString().trim()))+"");
            }
        }
        else
        {
            Toast.makeText(getApplicationContext(), "请先绑定服务!", Toast.LENGTH_SHORT).show();
        }
    }

    //服务绑定
    public void bindService11(View view) {
        if (!flag){
            conn=new ConnectionUtil();
            Intent intent=new Intent();
            intent.setClass(getApplicationContext(),Calculate.class);
            intent.putExtra("code","200");
            bindService(intent,conn,BIND_AUTO_CREATE);
            flag=!flag;
        }
        else
        {
            Toast.makeText(getApplicationContext(), "请不要重复绑定!", Toast.LENGTH_SHORT).show();
        }
    }

    //连接类
    private class ConnectionUtil implements ServiceConnection {
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            //获取binder对象
            binder= (Calculate.MyBinder) iBinder;
            //获取service
            service=binder.getService();
        }

        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            binder=null;
            service=null;
        }
    }
}

(5)效果图

3.案例3:-bind方式启动输入helloword

1.使用Service进行输出helloword。

2.参考代码

  1. 自定义服务类
//自定义服务
public class MyService extends Service {
    //便于调用结果
    private MyBinder myBinder=new MyBinder();
    //创建
    @Override
    public void onCreate() {
        System.out.println("onCreate");
        Toast.makeText(this, "onCreate", Toast.LENGTH_SHORT).show();
        super.onCreate();
    }

    //onBind
    @Nullable
    @Override
    public IBinder onBind(Intent intent) {
        //接收传递的数据
        String str=intent.getStringExtra("code");
        System.out.println("onBind---"+"code="+str);
        Toast.makeText(this, "onBind---code="+str, Toast.LENGTH_SHORT).show();
        return myBinder;
    }

    //解绑
    @Override
    public boolean onUnbind(Intent intent) {
        System.out.println("onUnbind");
        Toast.makeText(this, "onUnbind", Toast.LENGTH_SHORT).show();
        return false;
    }
    //销毁
    @Override
    public void onDestroy() {
        System.out.println("onDestroy");
        Toast.makeText(this, "onDestroy", Toast.LENGTH_SHORT).show();
    }

    //内部类
    class MyBinder extends Binder{
        //返回Service对象
        public MyService getService(){
            return MyService.this;
        }
    }
    //方法
    public void printHello(){
        System.out.println("hello world!");
        Toast.makeText(this, "hello world!", Toast.LENGTH_SHORT).show();
    }
}

  1. 注册服务
   <service android:name=".MyService" />
  1. 创建布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="绑定服务"
        android:textSize="30dp"
        android:onClick="bindService11"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="输出信息"
        android:textSize="30dp"
        android:onClick="bindService22"
        />
    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="解绑服务"
        android:textSize="30dp"
        android:onClick="unBindService11"
        />
</LinearLayout>
  1. Service的启动类代码。
//启动服务
public class MainActivity extends AppCompatActivity {

    MyService myService=null;
    MyService.MyBinder binder=null;
    ConnectionUtil conn=null;
    private boolean Flag=false;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    //绑定
    public void bindService11(View view) {
       if (!Flag){
           //显式启动
           Intent intent=new Intent();
           intent.setClass(this,MyService.class);
           //设置传递数据
           intent.putExtra("code","200");
           //创建连接对象
           conn=new ConnectionUtil();
           //绑定服务
           bindService(intent,conn,BIND_AUTO_CREATE);
           Flag=!Flag;
       }
       else {
      Toast.makeText(getApplicationContext(), "服务已绑定!", Toast.LENGTH_SHORT).show();
       }
    }
    //输出信息
    public void bindService22(View view) {
        if (Flag) {
             myService.printHello();
        }
        else{
            Toast.makeText(getApplicationContext(), "请绑定服务!", Toast.LENGTH_SHORT).show();
        }

    }

    //解绑
    public void unBindService11(View view) {
        if (Flag){
            unbindService(conn);
            Flag=!Flag;
        }
        else{
            Toast.makeText(getApplicationContext(), "暂无可解绑的服务!", Toast.LENGTH_SHORT).show();
        }

    }

    //自定义连接类
    private class ConnectionUtil implements ServiceConnection {

        //服务连接
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            binder= (MyService.MyBinder) iBinder;
            myService= binder.getService();
        }

        //服务解绑-被kill的时候才会调用
        @Override
        public void onServiceDisconnected(ComponentName componentName) {
                binder=null;
                myService=null;
        }
    }
}
  1. 效果图

4.案例-start和bind学习的案例

4.1目录结构

4.2注册信息

<!--        注册Service-->
        <service android:name=".service.MyService1"
            android:exported="true">
<!--           说明该Service被哪些Intent启动 -->
            <intent-filter>
                <action android:name="com.lxz.app9Service"/>
            </intent-filter>
        </service>

4.3自定义Service的代码

public class MyService1 extends Service {

    /*
    *
    * 创建的时候被调用一次,调用完成之后会销毁
    * */
    @Override
    public void onCreate() {
        super.onCreate();
        System.out.println("onCreate");
         Toast.makeText(this, "onCreate", Toast.LENGTH_SHORT).show();
    }

    /*
    * 采用startService启动服务的时候调用
    * Intent是从客户端传来的数据
    * flags是附加数据,表示启动的方式
    *startId表示当前服务的唯一的ID的值
    * */
    @Override
    public int onStartCommand(Intent intent, int flags, int startId) {
    Toast.makeText(this, "stratService"+startId, Toast.LENGTH_SHORT).show();
        //服务编号每次启动的都是不一样的
        System.out.println("服务编号"+startId);
        return super.onStartCommand(intent, flags, startId);
    }

    MyBinder binder=new MyBinder();
    @Nullable
    @Override
    /*
    * 采用bind的方式启动的时候会被调用
    * 返回值是一个IBinder的接口实现类对象(需要自己去定义)
    * */
    public IBinder onBind(Intent intent) {
        System.out.println("onBind");
        Toast.makeText(this, "onBind", Toast.LENGTH_SHORT).show();
        //必须返回binder对象,不然的话是失败的
        return binder;
    }

    /*
    *
    * 客户端调用unBindService的时候调用,断开改Service上连接的所有客户端
    * */
    @Override
    public boolean onUnbind(Intent intent) {
        System.out.println("onUnbind");
        Toast.makeText(this, "onUnbind", Toast.LENGTH_SHORT).show();
        return true;
    }

    /*
    * 当Service被关闭/销毁的时候调用
    * */
    @Override
    public void onDestroy() {

        System.out.println("onDestory");
        Toast.makeText(this, "onDestory", Toast.LENGTH_SHORT).show();
        super.onDestroy();
    }

    //IBinder内部类
    public class  MyBinder extends Binder {
        //获取Service对象
        public Service getService(){
            return MyService1.this;
        }
    }

    //方法:输出hello
    public void printHello(){
        Toast.makeText(this,"你好啊!",Toast.LENGTH_SHORT);
        System.out.println("你好啊!");
    }
}


4.4主布局文件代码

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:orientation="vertical"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

 <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:gravity="center"
     android:text="startService"
     android:textSize="30dp"
     android:onClick="startService1"
     />
 <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:gravity="center"
     android:text="startService(隐式)"
     android:textSize="30dp"
     android:onClick="startService2"
     />
 <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:gravity="center"
     android:text="stopService"
     android:textSize="30dp"
     android:onClick="stopService11"
     />
 <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:gravity="center"
     android:text="bindService1"
     android:textSize="30dp"
     android:onClick="bindService11"
     />
 <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:gravity="center"
     android:text="输出你好啊!"
     android:textSize="30dp"
     android:onClick="bindService22"
     />
 <Button
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:gravity="center"
     android:text="unBindService"
     android:textSize="30dp"
     android:onClick="unBindService11"
     />
</LinearLayout>

4.5主布局文件的Java代码

//启动服务就类比启动Activity的做法
public class MainActivity extends AppCompatActivity {
    Intent intent=null;
    //继承Binder的内部类
    MyService1.MyBinder myBinder=null;
    //自定义服务
    MyService1 bservice=null;
    //自定义连接对象
    ConnectionUtil conn=null;
    //是不是绑定了
    private  boolean FLAG=false;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

    }
    //方式一显式启动
    public void startService1(View view) {
        intent=new Intent(this,MyService1.class);
        startService(intent);
    }

    //方式一隐式启动
    public void startService2(View view) {
        intent=new Intent();
        //需要设置app的包名否则无效
        intent.setPackage("com.lxz.app9");
        intent.setAction("com.lxz.app9Service");
        startService(intent);
    }

    //停止服务:
    public void stopService11(View view) {
        stopService(intent);

    }

    //采用服务绑定的方式
    /*
    * flages:0表示绑定的时候不自动创建Server对象,1(BIND_AUTO_CREATE)表示自动创建Service对象
    * */
    public void bindService11(View view) {
        if (!FLAG)
        {
            intent=new Intent();
            //需要设置app的包名否则无效
            intent.setPackage("com.lxz.app9");
            intent.setAction("com.lxz.app9Service");
            conn=new ConnectionUtil();
            bindService(intent,conn,BIND_AUTO_CREATE);
            FLAG=!FLAG;
        }
        else
        {
      Toast.makeText(bservice, "请不要重复绑定", Toast.LENGTH_SHORT).show();
        }

    }

    //调用输入你好的方法
    public void bindService22(View view) {
    if (FLAG) {
      bservice.printHello();
        }
    else {
      Toast.makeText(getApplicationContext(), "请绑定后使用!", Toast.LENGTH_SHORT).show();
    }
    }

    //解除服务绑定
    public void unBindService11(View view) {
        if (FLAG)
        {
            unbindService(conn);

            FLAG=!FLAG;
        }
        else{
            Toast.makeText(getApplicationContext(), "暂无绑定的服务!", Toast.LENGTH_SHORT).show();
        }
    }
    //创建连接对象
    /*
    * 实现连接服务
    * */
   private class ConnectionUtil implements ServiceConnection {
        /*
        * 绑定成功的时候调用
        * IBinder iBinder就是onBind返回的binder对象
        * */
        @Override
        public void onServiceConnected(ComponentName componentName, IBinder iBinder) {
            System.out.println("onServiceConnected---服务连接");
            //此时获取到的就是onBind返回的IBinder对象,myBinder拥有service的Context,从而可以调用Service中定义方法
           myBinder=(MyService1.MyBinder)iBinder;
           //获取Service对象
           bservice= (MyService1) myBinder.getService();
        }

        /*
        * 该方法只在Service 被破坏了或者被杀死的时候调用. 例如, 系统资源不足, 要关闭一些Services, 刚好连接绑定的 Service 是被关闭者之一,  这个时候onServiceDisconnected() 就会被调用.
        * */
        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            System.out.println("onServiceDisconnected---服务断开");
            myBinder=null;
            bservice=null;
        }
    }
}

4.6效果图

(1)start方式

(2)采用bind方式

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/116135.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

MySQL (三)------DDL操作数据库、DDL操作表

DDL操作数据库 1.1创建数据库(掌握) 语法 create database 数据库名 [character set 字符集][collate 校对规则] 注: []意思是可选的意思 字符集(charset)&#xff1a;是一套符号和编码。 练习 创建一个day01的数据库&#xff08;默认字符集) create database day01;…

List使用的坑

Arrays.asList的三个坑 1、不能转换基本数组类型(传数组进去&#xff0c;size1) 2、不支持增删操作(因为内部是一个final的数组) 3、对原始数组的修改会影响到我们获得的那个List 源码&#xff1a; 抽象List接口不支持新增 解决方案&#xff1a; 1、new ArrayList 2、java8…

4.移动端布局-flex布局**

1、传统布局和flex布局 传统布局&#xff1a;PC端 兼容性好布局繁琐局限性&#xff0c;不能在移动端很好的布局 flex布局&#xff1a;PC端、移动端操作方便&#xff0c;布局简单&#xff0c;移动端应用广泛PC端浏览器支持情况较差IE11或更低版本&#xff0c;不支持或仅部分支…

关于加密货币危机公关的智能钱包系列:该做和不该做哪些事情

我们的新一期 Twitter Spaces 为危机公关带来了加密镜头。与我们的主持人 Megan DeMatteo 一起出席本期节目的还有 Market Across 战略与消费者成功副总裁 Kim Bazak 和 Ambire CMO Vanina Ivanova。 Ambire Twitter Spaces 第 14 集以更广泛的视角来看待 FTX/Alameda 的故事。…

virtio虚拟化框架

virtio虚拟化 系统虚拟化技术是云计算最重要的核心技术之一。云计算平台的资源池化&#xff0c;资源统一管理以及后续的动态分配都是基于系统虚拟化技术才得以实现的。在计算机系统中&#xff0c;主要有计算资源&#xff0c;存储资源和网络资源。所以&#xff0c;系统虚拟化技术…

通讯录(3)

接着上一篇。 上一篇的指定删除还有一定的问题&#xff0c;我让用户输入要删除的联系人的名字&#xff0c;然后查询这个名字是否存在&#xff0c;再去删除。但是这里忽略了一个问题&#xff0c;如果两人名字一样呢&#xff1f;其它也有这样的问题&#xff0c;年龄&#xff0…

【vant组件安装】按需引入 完整引入 定制主题

vant官网&#xff1a;https://vant-contrib.gitee.io/vant/v2/#/zh-CN/定制主题: https://vant-contrib.gitee.io/vant/v2/#/zh-CN/theme 1. vant组件安装—按需引入 1.安装vant组件库 npm i vantlatest-v22.安装按需引入组件 npm i babel-plugin-import -D3.在babel.config.j…

cadence SPB17.4 - 从正常PCB文件反推原理图

文章目录cadence SPB17.4 - 从正常PCB文件反推原理图概述笔记用SPB17.4 allegro 出报表剩余的事情最重要的一件事情 - 核对整理出的原理图是否和PCB原图网络一致最后的事情备注ENDcadence SPB17.4 - 从正常PCB文件反推原理图 概述 和同学讨论问题, 他那有一个可以正常生产的立…

2-2-3-9-1-2、jdk1.7ConcurrentHashMap详解

数据结构 对比hashmap,hashmap数组对象类型是Entry对象类型&#xff0c;而ConcurrentHashMap数组对象类型是Segment[]数组&#xff0c;segment[]数组的对象类型为HashEntry类型(一个Segment里面包含一个HashEntry数组&#xff0c;每个HashEntry是一个链表结构&#xff0c;当对…

【youcans 的 OpenCV 学习课】1.2 编译生成带有 OpenCV_contrib 的 OpenCV 库

专栏地址&#xff1a;『youcans 的图像处理学习课』 文章目录&#xff1a;『youcans 的图像处理学习课 - 总目录』 【youcans 的 OpenCV 学习课】1.2 编译生成 OpenCV_contrib 的 OpenCV 库 文章目录【youcans 的 OpenCV 学习课】1.2 编译生成 OpenCV_contrib 的 OpenCV 库1. 工…

机器学习笔记之Sigmoid信念网络(一)对数似然梯度

机器学习笔记之Sigmoid信念网络——对数似然梯度引言回顾&#xff1a;贝叶斯网络的因子分解Sigmoid信念网络对数似然梯度推导过程梯度求解过程中的问题引言 从本节开始&#xff0c;将介绍Sigmoid\text{Sigmoid}Sigmoid信念网络。 回顾&#xff1a;贝叶斯网络的因子分解 Sigmo…

.NET(C#、VB)APP开发——Smobiler平台控件介绍:Bluetooth组件

本文简述如何在Smobiler中使用Bluetooth。 Step 1. 新建一个SmobilerForm窗体&#xff0c;并在窗体中加入Button和Bluetooth&#xff0c;布局如下 Button的点击事件代码&#xff1a; /// <summary>/// 关闭蓝牙/// </summary>/// <param name"sender"…

飞项三招教你用协同工具杜绝远程办公“摸鱼”

共同社19日报道称&#xff0c;总务省在新冠紧急事态宣言全面解除后不久的2021年10月对日本约9万户家庭开展了社会生活基本调查&#xff0c;利用获得的数据&#xff0c;对上班族中在调查当天有过远程办公的人和完全没有远程办公的人的工作日时间分配进行了比较。 结果显示&…

【vue面试题】

vue谈谈你怼MVVM开发模式的理解vue优点渐进式框架的理解vue常用的指令v-if和v-showv-if和v-for的优先级如何让CSS只在当前组件中起作用?<keep-alive></keep-alive> 的作用是什么?如何获取dom?vue-loader是什么&#xff1f;使用它的用途有哪些&#xff1f;assets…

哺乳时宝宝一边吃奶,另一边却自动流出来,这是怎么回事?

别人眼中的母乳喂养只是简单地把宝宝抱在怀里&#xff0c;让宝宝吃饱&#xff0c;超级简单。事实上&#xff0c;有很多母乳喂养。“麻烦事”比如母乳不足、堵奶、乳腺炎等&#xff0c;甚至更多“简单”漏奶会让宝宝头疼。有些妈妈很幸运&#xff0c;不知道什么是漏奶&#xff0…

小程序之会议管理

会议管理 注意事项 一些需要注意的细节&#xff1a; 因为 WXML 节点标签名只能是小写字母、中划线和下划线的组合&#xff0c;所以自定义组件的标签名也只能包含这些字符。自定义组件也是可以引用自定义组件的&#xff0c;引用方法类似于页面引用自定义组件的方式&#xff0…

React DAY07

复习&#xff1a; 1.RN中的样式和布局 RN样式完全脱离浏览器&#xff0c;自成体系的一套样式&#xff0c;使用对象创建样式 行内样式&#xff1a; <Text style{{color: red}}>内部样式&#xff1a; let ss StyleSheet.create({danger: {color: red}}) <Text styl…

从业多年的Android开发,竟拿不到 Application Context?

Android 开发者们对于 Application 并不陌生。有的时候为避免内存泄漏&#xff0c;常常不直接使用 Context 而是通过其提供的 getApplicationContext() 确保拿到的是 Application 级别的 Context。而本次像通常一样&#xff0c;拿到的 Application 却是 null&#xff0c;到底是…

国考省考行测:细节理解,对错判断,要素查找,问什么,找什么,对比分析

国考省考行测&#xff1a;细节理解&#xff0c;对错判断&#xff0c;要素查找&#xff0c;问什么&#xff0c;找什么&#xff0c;对比分析 2022找工作是学历、能力和运气的超强结合体! 公务员特招重点就是专业技能&#xff0c;附带行测和申论&#xff0c;而常规国考省考最重要…

头戴式耳机适合运动吗、五款最适合运动的耳机分享

戴着耳机锻炼&#xff0c;听着动感的音乐&#xff0c;会让你心潮澎湃&#xff0c;瞬间感觉自己力大无穷。那什么样的耳机更适合在健身房锻炼时戴呢&#xff1f;首先稳固性和舒适度一定要比较好&#xff0c;毕竟在运动的过程中老是感觉到不适或者掉落&#xff0c;那真的是很令人…