小编Sur*_*Rao的帖子

有人可以打破这个匿名功能并解释一下吗?

n => +n && [...1e9+''].map(_ => n += 9);
Run Code Online (Sandbox Code Playgroud)

这将打印一个数字数组'n'是数字根.我想通过上面给出的这个函数知道这是怎么做的?

谢谢您的回答

javascript anonymous-function

0
推荐指数
1
解决办法
69
查看次数

几个月之间没有返回正确的值

Select MOD (RUNC (MONTHS_BETWEEN (TO_DATE ('28-Mar-2017', 'DD-MON-YYYY'),
 TO_DATE ('28-Feb-2017', 'DD-MON-YYYY'))), 12) Months from dual
Run Code Online (Sandbox Code Playgroud)

为什么即使这个月未完成,此功能也会返回1个月?它应该是0

sql oracle

0
推荐指数
1
解决办法
290
查看次数


在离子框架中进行生产

最近,我使用ionic 3完成了一个项目,任何人都可以帮助我--aot或--prod,这使我们的产品更加完善。

cordova run android --aot 
Run Code Online (Sandbox Code Playgroud)

要么

cordova run android --prod
Run Code Online (Sandbox Code Playgroud)

ionic-framework ionic3

0
推荐指数
1
解决办法
1061
查看次数

在ionic 3和Angular 4中使用的文本中的随机颜色生成器

home.html

创建卡并访问json以获取值和数据

<ion-card *ngFor="let shayari of shayar_list">
    <div class="card-title" [ngStyle]="{'color':shayari.color{{shayari.title}}</div>
</ion-card>
Run Code Online (Sandbox Code Playgroud)

.ts

创建一个json并访问math.random函数调用

this.shayar_list = [{
  title: 'Love Shayari',
  color : this.getRandomColor(),
]}
Run Code Online (Sandbox Code Playgroud)

创建一个随机的颜色生成器功能

getRandomColor()
  {
      var color = "#";
      for (var i = 0; i < 3; i++)
      {
          var part = Math.round(Math.random() * 255).toString(16);
          color += (part.length > 1) ? part : "0" + part;
      }
      return color;
  }
Run Code Online (Sandbox Code Playgroud)

text colors ionic-framework ionic3 angular

0
推荐指数
1
解决办法
1101
查看次数

How to change ion-button size in Ionic 4?

I'm having trouble changing the size of my ion-button in Ionic 4. This same code used to work in the previous version, Ionic 3. I've modified my width and height of the button, but nothing works.

All that shows is the standard ion-button with an unchanged height/width.

page.scss

.button {
        display: table;
        margin: 0 auto;
        border-radius: 4px;
        margin-top: 27px;
   .login {
        font-family: $font;
        letter-spacing: 2px;
        width: 280px;
        height: 50px;
        display: block;
        border-radius: 4px;
    }
}
Run Code Online (Sandbox Code Playgroud)

page.html

<div class="button"><ion-button class="login" (click)="login(oldUser)">LOGIN</ion-button></div>
Run Code Online (Sandbox Code Playgroud)

html css ionic-framework angular ionic4

0
推荐指数
1
解决办法
4401
查看次数

如何在azure门户中永久删除旧的日志分析工作区?

我有两个 MS-Azure 订阅:SUB1 和 SUB2

在 SUB1 中,我创建了名为“nonprod-app-law”的 Log-analytics-workspace,几天后我将其删除。

在 SUB2 中,我创建了名为“nonprod-app-law”的日志分析工作区。但低于错误

错误:

0-06-28T19:29:24.0541229Z There were errors in your deployment. Error code: DeploymentFailed.

2020-06-28T19:29:24.0626384Z ##[error]Details:

2020-06-28T19:29:24.0627398Z ##[debug]Processed: ##vso[task.issue type=error;]Details:

2020-06-28T19:29:24.0629668Z ##[error]Conflict: The workspace name 'nonprod-app-law' is not unique

2020-06-28T19:29:24.0630757Z ##[debug]Processed: ##vso[task.issue type=error;]Conflict: The workspace name 'nonprod-app-law' is not unique
Run Code Online (Sandbox Code Playgroud)

azure azure-log-analytics

0
推荐指数
1
解决办法
3904
查看次数

当我使用“n--”而不是“n-1”时,为什么会出现 stackoverflow 错误?

在此代码中,这是一个递归打印元素 1 到 5 的程序,当我使用n--代替 时n-1,出现堆栈溢出错误。而当n-1使用时,代码运行得很好。不应该n--n-1在此代码中工作相同吗?

    //when using n--

    class PrintElements1to5
    {
        public static void main(String[] args)
        {
            recursivePrint(5);
        }
    
        static void recursivePrint(int n)
        {
            if(n<1)
                return;
            recursivePrint(n--);  
            System.out.print(n+" ");
        }
    }
Run Code Online (Sandbox Code Playgroud)

输出:

Exception in thread "main" java.lang.StackOverflowError
Run Code Online (Sandbox Code Playgroud)
    //when using n=n-1
    class PrintElements1to5
    {
        public static void main(String[] args)
        {
            recursivePrint(5);
        }
    
        static void recursivePrint(int n)
        {
            if(n<1)
                return;
            recursivePrint(n-1);
            System.out.print(n+" ");
        }
    }
Run Code Online (Sandbox Code Playgroud)

输出:

1 2 3 4 5 
Run Code Online (Sandbox Code Playgroud)

java recursion

0
推荐指数
1
解决办法
68
查看次数

给定一个范围,求能被 3 或 5 整除的数字之和

下面的代码对于较小的数字来说工作得很好,但是对于更大的数字的时间膨胀给了我建议

#include<stdio.h>
int main()
{
  int num;
  int sum=0;
  scanf("%d",&num);
  for(int i=1;i<=num;i++)
  {
    if(i%3==0 || i%5==0)
    sum += i;
  }
  printf("%d",sum);
}
 
Run Code Online (Sandbox Code Playgroud)

为此需要有效的代码

尝试减少代码花费的时间。

c

0
推荐指数
1
解决办法
270
查看次数

Java android找不到方法ndk()

我使用一个android studio,当我刷新控制台中的所有gradle项目时,我有:

Error:(28, 0) Could not find method ndk() for arguments [build_drk092k49tm2cwy3k37ev72l6$_run_closure1$_closure7@6b46899] 
  on object of type com.android.build.gradle.AppExtension. 
<a href="openFile:C:\Users\ElteGps 022\Desktop\PairingCodes\app\build.gradle">Open File</a>
Run Code Online (Sandbox Code Playgroud)

在邮件中,我看到:

找不到方法ndk()作为参数

这是我的build.gradle

apply plugin: 'com.android.application'
apply plugin: 'me.tatarka.retrolambda'


android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "smok.pl.pairingcodes"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        targetCompatibility 1.8
        sourceCompatibility 1.8
    }

    ndk {
        moduleName "liblfrfid"
        abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
    }


    task …
Run Code Online (Sandbox Code Playgroud)

java android android-ndk

-1
推荐指数
1
解决办法
1676
查看次数