如何在React Native和Firebase中设置Google登录

Google sign-in is a great login feature to offer to your app's users. It makes it easier for them to create an account and sign in.

Google登录是一项出色的登录功能,可为您的应用程序用户提供。 这使他们更容易创建帐户并登录。

And what's even better, Firebase makes it extremely easy for developers to add support for Google sign-in. But setting up the React Native environment can create some challenges, which are fully covered in this tutorial.

更妙的是,Firebase使开发人员添加Google登录支持变得非常容易。 但是设置React Native环境可能会带来一些挑战,本教程将全面介绍这些挑战。

React Native and Firebase SDK make the implementation of Google login pretty straightforward. Let's build a simple app that only has a single Google login button. Once the user successfully logs into Google, we are going to display the user info retrieved from their Google account as well as a logout button.

React Native和Firebase SDK使Google登录的实现非常简单。 让我们构建一个只有一个Google登录按钮的简单应用。 用户成功登录Google后,我们将显示从其Google帐户检索到的用户信息以及注销按钮。

You can also add Facebook Login to your app if you're interested in providing even more login options to your users. You can check out this guide to Facebook Login in React Native with Firebase if you're looking to learn more on how to set up Facebook sign-in.

如果您有兴趣向用户提供更多登录选项,也可以将Facebook Login添加到您的应用程序。 如果您想了解有关如何设置Facebook登录的更多信息,可以查看本指南中的使用Firebase在Fire Native中进行 Facebook登录。

为什么要在移动应用中使用Google登录按钮? (Why Use a Google Sign-in Button in Mobile Apps?)

  1. Using Google or other third parties can make your authentication process seamless and friendly. Users don’t have to waste time in the registration process, which will improve your registration and retention rates tremendously.

    使用Google或其他第三方可以使您的身份验证过程变得无缝且友好。 用户不必在注册过程中浪费时间,这将极大地提高您的注册和保留率。
  2. It's safe and secure.

    是安全的。
  3. Users trust Google or Facebook more than an unknown site or app on the Internet.

    用户对Google或Facebook的信任程度超过Internet上的未知站点或应用程序。
  4. It provides a good user experience. As a user, we have little patience for any actions or work that we need to do, especially in a fairly unknown app that we are trying for the first time.

    它提供了良好的用户体验。 作为用户,我们对需要执行的任何操作或工作几乎没有耐心,尤其是在我们首次尝试的未知应用程序中。

Without further ado, let's jump directly into the app development part of this tutorial.

事不宜迟,让我们直接进入本教程的应用程序开发部分。

设置Firebase项目 (Setting up the Firebase Project)

Go to the Firebase Console and create a Firebase project:

转到Firebase控制台并创建一个Firebase项目:

Here, we will need to set up the Firebase project name and app identifier, so let's first create the React Native app.

在这里,我们将需要设置Firebase项目名称和应用程序标识符,因此让我们首先创建React Native应用程序。

创建React Native项目 (Creating the React Native Project)

First, we need to create a React Native project by using the following command:

首先,我们需要使用以下命令创建一个React Native项目:

react-native init instamobile-google-login-demo

react-native init instamobile-google-login-demo

H‌ere, we have given the name of the project as instamobile-google-login-demo. Now, we need to install the react-native-google-signin package using the following command:

‌,我们将项目的名称命名为instamobile-google-login-demo 。 现在,我们需要使用以下命令安装react-native-google-signin软件包:

yarn add react-native-google-singin

yarn add react-native-google-singin

The react-native-google-signin package is used to implement Google auth functions in the React Native app. Now, we need to import the necessary modules and components from the respective package as shown in the code snippet below:

react-native-google-signin软件包用于在React Native应用程序中实现Google auth功能。 现在,我们需要从相应的包中导入必要的模块和组件,如下面的代码片段所示:

Next, we need to create the states in order to handle the auth state and user info. For that we use the useState module as shown in the code snippet below:

接下来,我们需要创建状态以处理身份验证状态和用户信息。 为此,我们使用useState模块,如下面的代码片段所示:

Now, we need to create a sign-in function to handle authentication as shown in the code snippet below:

现在,我们需要创建一个登录功能来处理身份验证,如下面的代码片段所示:

Next, we need to initialize the setup of the Google login object by leveraging the useEffect function:

接下来,我们需要利用useEffect函数来初始化Google登录对象的设置:

useEffect(() => {GoogleSignin.configure({scopes: ['email'], // what API you want to access on behalf of the user, default is email and profilewebClientId:'418977770929-g9ou7r9eva1u78a3anassxxxxxxx.apps.googleusercontent.com', // client ID of type WEB for your server (needed to verify user ID and offline access)offlineAccess: true, // if you want to access Google API on behalf of the user FROM YOUR SERVER});}, []);

Lastly, we need a function that handles the logout action. For that, we are going to implement the signOut method as shown in the code snippet below:

最后,我们需要一个处理注销操作的函数。 为此,我们将实现signOut方法,如下面的代码片段所示:

Now, we need to render the components on the screen as well. For that, we are going to make use of various components like View and Button:

现在,我们还需要在屏幕上渲染组件。 为此,我们将使用各种组件,例如ViewButton

Now, if we run our project in the emulator we will get the following results:

现在,如果我们在仿真器中运行项目,我们将得到以下结果:

Pretty sweet, right? We have completed the implementation (both UI and business logic) at the React Native level in our project.

很漂亮吧? 我们已经在项目的React Native级别完成了实现(UI和业务逻辑)。

As you can see, we have a "Sign in with Google" button that converts into a logout button once the login operation is successfully completed.

如您所见,我们有一个“使用Google登录”按钮,一旦成功完成登录操作,该按钮就会转换为注销按钮。

We are now going to set up the Google SignIn package and the Firebase app.

现在,我们将设置Google登录包和Firebase应用。

配置iOS和Android本机项目 (Configuring the iOS and Android Native Projects)

There are a few set up steps we need to take before the project is fully working. They are mostly related to the actual native side of the app.

在项目全面运行之前,我们需要采取一些设置步骤。 它们主要与应用程序的实际本机方面有关。

对于iOS (For iOS)

Here, in VSCode (or any Terminal)  just run cd ios && pod install. Then open the .xcworkspace file in Xcode (from the ios folder) and make sure the Pods are included:

在这里,在VSCode(或任何终端)中,只需运行cd ios && pod install 。 然后在Xcode(从ios文件夹)中打开.xcworkspace文件,并确保包含Pod

对于Android (For Android)

1. First, we need to link the native module.

1.首先,我们需要链接本机模块。

  • In RN >= 0.60 you should not need to do anything thanks to auto-linking.

    在RN> = 0.60中,由于自动链接,您无需执行任何操作。
  • In RN < 0.60 run react-native link react-native-google-signin.

    在RN <0.60中,运行react-native link react-native-google-signin

2. Update android/build.gradle with the following configuration:

2.使用以下配置更新android / build.gradle

buildscript {ext {buildToolsVersion = "27.0.3"minSdkVersion = 16compileSdkVersion = 27targetSdkVersion = 26supportLibVersion = "27.1.1"googlePlayServicesAuthVersion = "16.0.1" // <--- use this version or newer}
...dependencies {classpath 'com.android.tools.build:gradle:3.1.2' // <--- use this version or newerclasspath 'com.google.gms:google-services:4.1.0' // <--- use this version or newer}
...
allprojects {repositories {mavenLocal()google() // <--- make sure this is includedjcenter()maven {// All of React Native (JS, Obj-C sources, Android binaries) is installed from npmurl "$rootDir/../node_modules/react-native/android"}}
}

3. Update android/app/build.gradle with the following configuration:

3.使用以下配置更新android/app/build.gradle

...
dependencies {implementation fileTree(dir: "libs", include: ["*.jar"])implementation "com.android.support:appcompat-v7:23.0.1"implementation "com.facebook.react:react-native:+"implementation(project(":react-native-community_google-signin")) // <--- add this dependency
}

Check that react-native link linked the native module – but only if you used react-native link!

检查react-native link链接了本机模块,但仅当您使用react-native link时才检查!

In android/settings.gradle  we should have the following configurations:

android/settings.gradle我们应该具有以下配置:

Next, in MainApplication.java , we should have the Google package added as in following code snippet:

接下来,在MainApplication.java ,我们应该添加Google包,如以下代码片段所示:

设置Firebase (Setting up Firebase)

对于iOS (For iOS)

Now, we need to get started on the Firebase configuration. In Firebase, we need to set up a Google cloud app. But when we set up the authentication method on Firebase this also creates an Google cloud app.

现在,我们需要开始Firebase配置。 在Firebase中,我们需要设置一个Google云应用。 但是,当我们在Firebase上设置身份验证方法时,这也会创建一个Google云应用。

First, we need to create Firebase iOS app in order to obtain GoogleServiceinfo.plist as shown in the screenshot below:

首先,我们需要创建Firebase iOS应用以获取GoogleServiceinfo.plist ,如以下屏幕截图所示:

Next, we copy the GoogleService-info.plist file to the Xcode project as shown in the screenshot below:

接下来,我们将GoogleService-info.plist文件复制到Xcode项目,如以下屏幕截图所示:

Now, we need to add the reversed client ID present in the GoogleService-info.plist file to the URL Types, as shown in the screenshot below:

现在,我们需要将存在于GoogleService-info.plist文件中的反向客户端ID添加到URL类型,如以下屏幕截图所示:

Next step is to go to InfoURL Types then fill the URL Schemes as shown in the screenshot below:

下一步是转到信息URL类型,然后填写URL方案 ,如下面的屏幕快照所示:

对于Android (For Android)

First, we need to create an Android app on Firebase. For that, we need a package name and certificate SHA-1 from our app. Then, we can register the Firebase app as shown below:

首先,我们需要在Firebase上创建一个Android应用。 为此,我们需要应用程序中的软件包名称和证书SHA-1 。 然后,我们可以如下所示注册Firebase应用程序:

We can get the package name in MainApplication.java of our project as highlighted in the code snippet below:

我们可以在我们项目的MainApplication.java中获得包名称,如下面的代码片段所示:

Next, we can get the SHA-1 key in the Keystore file. In the android/app directory, we can run the command:

接下来,我们可以在密钥库文件中获取SHA-1密钥。 在android / app目录中,我们可以运行以下命令:

Then, the SHA-1 key will appear, as shown in the screenshot below:

然后,将显示SHA-1键,如下面的屏幕截图所示:

After successfully creating the Firebase setup app, we need to download the google-services.json file and copy it to the directory, as shown in the screenshot below:

成功创建Firebase设置应用后,我们需要下载google-services.json文件并将其复制到目录,如以下屏幕截图所示:

Now, the final step is to set up a Google sign-in component in Android.

现在,最后一步是在Android中设置Google登录组件。

安装React Native Firebase软件包 (Installing the React Native Firebase Package)

In order to install react-native-firebase package version 6, we need to run the following command in our project command prompt:

为了安装react-native-firebase软件包版本6,我们需要在项目命令提示符下运行以下命令:

The @react-native-firebase/app module must be installed before using any other Firebase service.

在使用任何其他Firebase服务之前,必须先安装@react-native-firebase/app模块。

对于iOS (For iOS)

We already have GoogleService-Info.plist added to Xcode. What is left is to allow Firebase on iOS to use the credentials. The Firebase iOS SDK must be configured during the bootstrap phase of your application.

我们已经将GoogleService-Info.plist添加到Xcode。 剩下的就是允许iOS上的Firebase使用凭据。 必须在应用程序的引导阶段配置Firebase iOS SDK。

To do this, we need to open our /ios/{projectName}/AppDelegate.m file, and add the following:

为此,我们需要打开/ios/{projectName}/AppDelegate.m文件,并添加以下内容:

At the top of the file, we need to import the Firebase SDK:

在文件顶部,我们需要导入Firebase SDK:

Within your existing didFinishLaunchingWithOptions method, we need to add the following to the top of the method:

在您现有的didFinishLaunchingWithOptions方法中,我们需要在该方法的顶部添加以下内容:

Finally, we need to run the following command to finalize the installation of the CocoaPods package:

最后,我们需要运行以下命令来完成CocoaPods软件包的安装:

That's it. Now we have completed the installation of the main Firebase package on iOS

而已。 现在,我们已经完成了iOS上主要Firebase软件包的安装

对于Android (For Android)

We need to configure Firebase with Android credentials. To allow Firebase on Android to use the credentials, the google-services plugin must be enabled on the project. This requires modification to two files in the Android directory.

我们需要使用Android凭据配置Firebase。 要允许Android上的Firebase使用凭据,必须在项目上启用google-services插件。 这需要修改Android目录中的两个文件。

First, add the google-services plugin as a dependency inside your android/build.gradle file:

首先,将google-services插件添加为android / build.gradle文件中的依赖

React Native Firebase身份验证模块 (React Native Firebase Authentication Module)

After the installation completes, we need to set up the parent Firebase package. Next, we need to install the child module for authentication. For that, we need to open a terminal and run the following command:

安装完成后,我们需要设置父级Firebase软件包。 接下来,我们需要安装子模块进行身份验证。 为此,我们需要打开一个终端并运行以下命令:

对于iOS (For iOS)

We just need to install the pods again in the command prompt:

我们只需要在命令提示符下再次安装Pod:

对于Android (For Android)

You can follow the instructions on the official document which is only required if you are using React Native <= 0.59 or need to manually integrate the library.

您可以按照官方文档上的说明进行操作,仅在使用React Native <= 0.59或需要手动集成库时才需要。

在Firebase上激活Google登录 (Activating Google Sign-in on Firebase)

We need to go to the Firebase console. Then, in the Authentication section, we need to click on Google as shown in the screenshot below:

我们需要转到Firebase控制台。 然后,在“身份验证”部分中,我们需要单击Google,如以下屏幕截图所示:

Next, we need to enable the setup with the following configuration and save the configuration as shown in the screenshot below:

接下来,我们需要使用以下配置启用设置并保存配置,如下面的屏幕快照所示:

In App.js, we need to import auth from the Firebase package as shown in the code snippet below:

App.js中 ,我们需要从Firebase包中导入auth ,如下面的代码片段所示:

Next, we need to integrate authentication config to the sign-in function. After a successful login, we store the accessToken and idToken to Firebase. Now, we can try to login with Google on our demo React Native app.

接下来,我们需要将身份验证配置集成到登录功能。 成功登录后,我们将accessTokenidToken存储到Firebase。 现在,我们可以尝试在演示的React Native应用上使用Google登录。

Now we have successfully completed the integration of Google Sign-in in our React Native app:

现在,我们已经成功完成了在我们的React Native应用程序中Google登录的集成:

We can see new data that is added to the Firebase Console:

我们可以看到添加到Firebase控制台的新数据:

跟踪用户状态 (Tracking User Status)

In order to check the user’s login status, we use Firebase Auth. For that, we need to add the onAuthStateChanged method to useEffect in order for it to run in every componentDidMount event call.

为了检查用户的登录状态,我们使用Firebase Auth。 为此,我们需要将onAuthStateChanged方法添加到useEffect ,以便使其在每个componentDidMount事件调用中运行。

Also, we need to pass a callback to the function named onAuthStateChanged as an argument as shown in the code snippet below:

另外,我们需要将回调传递给名为onAuthStateChanged的函数作为参数,如下面的代码片段所示:

In the function onAuthStateChanged, we handle local state data as shown in the code snippet below:

onAuthStateChanged函数中我们处理本地状态数据,如下面的代码片段所示:

Now, we need to store the user data for the state. Then, try to display the user’s data after a successful login. For that, we need to use the following piece of code:

现在,我们需要存储该状态的用户数据。 然后,尝试在成功登录后显示用户的数据。 为此,我们需要使用以下代码:

We will get the following result in our simulator:

我们将在模拟器中得到以下结果:

Firebase注销 (Firebase Sign Out)

For signing out, we need to remove all the user’s credentials and revoke the Google sign-in token.

要注销,我们需要删除所有用户的凭据并撤消Google登录令牌。

First, we need to wait for the GoogleSignin module to revoke the access and sign out. Then, we call the signOut method of Firebase auth in order to successfully logout.

首先,我们需要等待GoogleSignin模块撤消访问权并退出。 然后,我们调用Firebase auth的signOut方法以成功注销。

The overall code implementation is provided in the code snippet below:

以下代码段提供了总体代码实现:

As a result, we can now perform logout operations as shown in the code snippet below:

结果,我们现在可以执行注销操作,如下面的代码片段所示:

结论 (Conclusion)

In this tutorial, we learned how to set up Google Login, along with storing an access token, by leveraging Firebase into our React Native project.

在本教程中,我们学习了如何通过将Firebase利用到我们的React Native项目中来设置Google登录以及存储访问令牌。

First, we created the React Native project with all the necessary components and function configurations. Then, we learned how to configure the Google Sign In and Firebase for both Android and iOS platforms. Finally, we set up the Firebase in React Native app using a Firebase package and displayed the user data along with sign out button.

首先,我们创建了具有所有必要组件和功能配置的React Native项目。 然后,我们学习了如何为Android和iOS平台配置Google登录和Firebase。 最后,我们使用Firebase软件包在React Native应用程序中设置了Firebase,并显示了用户数据以及“退出”按钮。

You can download the complete source code of this tutorial from Github.

您可以从Github下载本教程的完整源代码。

The best part is that Firebase & Google Auth are supported across all the mobile development languages, such as Flutter, Swift or Kotlin. The configuration steps and the architectural approach is exactly the same.

最好的部分是,所有移动开发语言(例如Flutter , Swift或Kotlin)都支持Firebase和Google Auth。 配置步骤和体系结构方法完全相同。

下一步 (Next Steps)

Now that you have learned about setting up Firebase Google Login in React Native apps, here are some other topics you can look into:

既然您已经了解了在React Native应用程序中设置Firebase Google Login的知识,那么您可以研究以下其他主题:

  • How to Build a React Native App with Firebase Backend

    如何使用Firebase后端构建React Native应用

  • Firebase & React Native —  Push notifications | Firebase storage

    Firebase和React Native — 推送通知 | Firebase储存

  • More Authentication Methods in React Native & Firebase — Google Login | Facebook login | Phone SMS OTP Auth

    React Native和Firebase中的更多身份验证方法-Google 登录 | Facebook登录 | 电话短信OTP身份验证

If you liked this React Native tutorial, please give me a star on the Github repo and share this with your community. You can check out even more free React Native projects on Instamobile. Cheers!

如果您喜欢这个React Native教程,请给我一个Github存储库上的星星,并与您的社区分享。 您可以在Instamobile上查看更多免费的React Native项目 。 干杯!

翻译自: https://www.freecodecamp.org/news/google-login-with-react-native-and-firebase/

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

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

相关文章

设计模式-发布订阅模式

这段时间在看vue的双向绑定原理&#xff0c;知道了vue的核心三大件&#xff1a;Observer, Complie, Watcher。 Observer用于监听属性的变化&#xff0c;如有变动就通知 Watcher。 Compile负责解析元素节点的指令&#xff0c;如v-if&#xff0c;v-bind之类, 进行数据和回调函数的…

杜教筛--51nod1239 欧拉函数之和

求$\sum_{i1}^{n}\varphi (i)$&#xff0c;$n\leqslant 1e10$。 这里先把杜教筛的一般套路贴一下&#xff1a; 要求$S(n)\sum_{i1}^{n}f(i)$&#xff0c;而现在有一数论函数$g(i)$&#xff0c;$g(i)$的前缀和很无脑&#xff0c;且$f$和$g$的狄利克雷卷积的前缀和很无脑&#xf…

【Android Studio安装部署系列】目录

概述 从刚开始使用Android Studio到现在&#xff0c;下面所有目录下的操作&#xff0c;当时习惯性的把每一个整理成一个文档&#xff08;其实就是简单文字描述截图&#xff09;&#xff1b;有些地方当时是一知半解&#xff0c;现在会稍微明白一些。正好赶上现在有时间。所以就想…

修改npm全局安装模式的路径

修改npm全局安装模式的路径 在正式写此文章之前&#xff0c;我得说一点血泪史。 刚学nodeJS不久&#xff0c;很纳闷为什么全局安装的模块在 node安装目录/node_modules‘ 中没找到&#xff01;后来仔细看了下安装成功后的信息&#xff0c;才发现原来是自动安装在C盘了&#xff…

javascript创建类_如何使用JavaScript创建吹气效果

javascript创建类Have you ever wondered how you can create a realistic air blowing effect with JavaScript? Like the one shown on the evening TV shows, where multiple balls are being mixed up in a sphere-like object by leveraging air pressure? If you want …

Bootstrap 4:如何使顶部固定的Navbar保持在容器中而不拉伸?

There are many ways to make a fixed navbar stay inside a parents div container. Well go over the most straightforward one here.有很多方法可以使固定的导航栏停留在父级的div容器中。 我们将在这里介绍最简单的方法。 Imagine you have the following code, modified…

基于SpringBoot+Mybatis+Thymeleaf商品信息管理系统

github地址&#xff1a;github.com/zaiyunduan1…,如果对你有帮助&#xff0c;欢迎Star 主要用到的技术&#xff1a; 使用maven进行项目构建使用SpringbootMybatis搭建整个系统使用Thymeleaf模板技术实现页面静态化使用框架Bootstrap、JQuery开发前端界面使用MySQL和MongoDB分别…

在Mac上为自己手动编译安装一套PHP7的开发环境

首先你得去官网下载php7 beta1的版本 这里由于我是在mac上安装&#xff0c;所以就去下载linux相关的版本&#xff0c;地址也直接附上了php7 beta1windows版的官方也有发布详情猛戳&#xff1a;这里 解压安装包&#xff0c;进入源代码目录 tar -zxvf php-7.0.0beta1.tar.gz cd p…

卡特兰数 HDU2067 HDU4165 HDU1134

题目链接&#xff1a;https://vjudge.net/problem/HDU-2067 小兔的棋盘 Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 11800 Accepted Submission(s): 5952 Problem Description小兔的叔叔从外面旅游回来给她…

Python的用途是什么? Python编程语言有10多种编码用途。

&#x1f44b;欢迎 (&#x1f44b; Welcome) Hi! Please take a moment to think about this question: 嗨&#xff01; 请花一点时间考虑这个问题&#xff1a; How is Python applied in real-world scenarios? Python如何在实际场景中应用&#xff1f; If you are learnin…

Publish/Subscribe

Publish/Subscribe 我们将会投递一个消息给多个消费者&#xff0c;这种模式被称为“publish/subscribe” 通俗的讲&#xff0c;前面的是点对点队列模型&#xff0c;现在讲的是发布订阅模型。 Exchanges producer&#xff1a;一个发送消息的用户应用程序 queue&#xff1a;一个存…

[转]在ROS下使用zeroconf配置多机通信

原文地址&#xff1a;http://www.corvin.cn/635.html&#xff0c;转载主要方便随时查阅&#xff0c;如有版权要求&#xff0c;请及时联系。 0x00 为何需要配置ROS多机通信 众所周知ROS是分布式系统&#xff0c;因此可以将机器人需要处理的复杂、计算量大的任务分解在多台机器上…

python中斐波那契数列_斐波那契数列–在Python,JavaScript,C ++,Java和Swift中进行了解释...

python中斐波那契数列by Pau Pavn通过保罗帕文(PauPavn) The Fibonacci sequence is, by definition, the integer sequence in which every number after the first two is the sum of the two preceding numbers. To simplify:根据定义&#xff0c;斐波那契数列是整数序列&a…

1583. 统计不开心的朋友

1583. 统计不开心的朋友 给你一份 n 位朋友的亲近程度列表&#xff0c;其中 n 总是 偶数 。 对每位朋友 i&#xff0c;preferences[i] 包含一份 按亲近程度从高到低排列 的朋友列表。换句话说&#xff0c;排在列表前面的朋友与 i 的亲近程度比排在列表后面的朋友更高。每个列…

uva 247(floyd传递闭包)

为什么&#xff0c;逗号后面&#xff0c;还有空格........ #include <iostream> #include <cstring> #include <algorithm> #include <cstdio> #include <vector> #include <map> using namespace std; const int maxn50; int d[maxn][max…

VS Code 的常用快捷键和插件

注:文章摘自 风行天下一万号 - 博客园 vs code 的常用快捷键 1、注释&#xff1a; 单行注释&#xff1a;[ctrlk,ctrlc] 或 ctrl/取消单行注释&#xff1a;[ctrlk,ctrlu] (按下ctrl不放&#xff0c;再按k u)多行注释&#xff1a;[altshiftA]多行注释&#xff1a;/**2、移动行&a…

python包numpy_NumPy Python科学计算软件包的终极指南

python包numpyNumPy (pronounced "numb pie") is one of the most important packages to grasp when you’re starting to learn Python.NumPy(读作“麻木派”)是您开始学习Python时要掌握的最重要的软件包之一。 The package is known for a very useful data str…

NGINX原理 之 SLAB分配机制(转)

1 引言 众所周知&#xff0c;操作系统使用伙伴系统管理内存&#xff0c;不仅会造成大量的内存碎片&#xff0c;同时处理效率也较低下。SLAB是一种内存管理机制&#xff0c;其拥有较高的处理效率&#xff0c;同时也有效的避免内存碎片的产生&#xff0c;其核心思想是预分配。其按…

apk之间数据共享的方式

1、四大组件之ContentProvider大法2、shareUserId3、apk均去远端获取配置文件&#xff08;或接口&#xff09;4、AIDL&#xff08;bindService&#xff09;5、SharePreference设置为MODE_WORLD_READABLE|MODE_WORLD_WRITEABLE模式&#xff0c;由于存在安全问题&#xff0c;已被…

蓝桥杯java 基础练习 十六进制转十进制

问题描述从键盘输入一个不超过8位的正的十六进制数字符串&#xff0c;将它转换为正的十进制数后输出。注&#xff1a;十六进制数中的10~15分别用大写的英文字母A、B、C、D、E、F表示。样例输入FFFF样例输出65535import java.math.BigInteger; import java.util.Scanner;public …