小编Jas*_*her的帖子

在表单上移动按钮时Delphi访问冲突

我试图在窗体上移动2个按钮,使用while循环检查按钮left属性,但我有一个访问冲突.我正在使用CreateThread()来讨论这个过程

The code:

procedure AnimButton1();
var ImageCount: integer;
var b1, b2: integer;
begin

  try

       while (b2 <> 187) do
       begin
           b2 := frmNotification.btnBuzina2.Left;
           frmNotification.btnBuzina2.Left := b2 - 1;

       end;

       while (b1 <> 256) do
       begin
           b1 := frmNotification.btnBuzina.Left;
           frmNotification.btnBuzina.Left := b1 - 1;

       end;

  except;
  end;

end;
Run Code Online (Sandbox Code Playgroud)

但是,当我使用Sleep()至少5毫秒时,我没有访问冲突,如下所示:

procedure AnimButton1();
var ImageCount: integer;
var b1, b2: integer;
begin

  try

       while (b2 <> 187) do
       begin
           b2 := frmNotification.btnBuzina2.Left;
           frmNotification.btnBuzina2.Left := b2 - 1;
           Sleep(5);
       end;

       while (b1 <> 256) do …
Run Code Online (Sandbox Code Playgroud)

delphi button access-violation

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

为什么java中的abs()不起作用?

我一直有一个关于java.lang.Math的问题:(可能非常基本)

为什么我必须Math.abs(-100)和不能abs(-100)

我觉得那Math是一堂课.并且abs是一种静态方法.但为什么我不能简单地导入java.lang.Math和使用abs(-100)

java syntax

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

C#代码片段计算表面和顶点法线

我需要一个C#代码片段来计算表面和顶点法线.表面的种类是三角形3D闭合网格.所需的代码段必须能够使用顶点集和三角形指示.这些现在可以使用了.3D网格物体的表面不光滑,因此需要进行平滑处理.

你可以帮帮我吗.

c# normalize geometry-surface

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

如何在android中运行时改变线性布局的宽度和高度?

Guyz ... Plz帮助..给出正确的代码,因为我使用了大多数这个问题的例子,我无法解决这个问题...

android android-layout android-linearlayout

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

前Microsoft Microsoft SLP Code Protector是否仍然可用且可用?

我想使用SLP Code Protector来更难以反编译.NET应用程序.我不想要许可功能,只需要它提供的脱机代码保护.

我知道它现在归InishTech所有,但我希望通过微软获得Code Protector,正如Visual Studio杂志的这篇文章所建议的那样

代码保护程序只是微软SLP愿景的一部分.代码保护器可以免费使用,它将包含在Visual Studio中.

Microsoft的SLP Code Protector仍然可用,如果可以,我将如何在Visual Studio中使用?

.net c# source-code-protection

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

如何在通话时隐藏电话号码

我的应用程序允许用户拨打电话,但我需要隐藏我正在呼叫的号码,因为它里面有一个密码.有没有办法实现这个目标?

当我说"隐藏号码"时,我的意思是在通话UIAlertView之前显示在确认中的电话号码,如果可能的话,在呼叫正在进行时在导航栏中显示.

phone-call ios

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

为什么不用英语编程?自然语言和编程语言有什么区别?

自然语言(如英语和法语)与C++和Perl等编程语言之间的主要区别是什么?

我对模糊性问题很熟悉,但不能使用交互式编译器或使用严格语法使用自然语言的子集来解决这个问题,但是所有时间仍然保留了语言的本质?

另一个问题是背景.但律师有办法解决这个问题.(这个问题不是关于降低编程的复杂性,而是关于使用自然语言指导计算机的简明理由和障碍.)

除了这两个之外还有其他重大问题吗?或者这两个比我上面提到的更大的后果?交互式解决方案和律师语言在技术上是否不适合编程?

language-agnostic nlp programming-languages

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

在QT中生成期间获取文件大小

我需要在生成文件时获取文件大小.

我已经尝试过使用QThread和QFileInfo::size一个while带有标志的标志,该标志表示完成的文件,但值永远不会改变.

所以想知道你是否可以在生成文件时获取文件大小.

qt filesize qthread qfileinfo

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

你能有一个包含捕获列表和参数列表的闭包吗?

在 Swift 中,如何创建一个包含捕获列表和参数的闭包?

我使用过以任何一种形式呈现的代码,但不知道如何创建具有参数和捕获列表的闭包。

例如

关闭参数列表:

myFunction {
    (x: Int, y: Int) -> Int in
    return x + y
}
Run Code Online (Sandbox Code Playgroud)

关闭捕获列表:

myFunction { [weak parent = self.parent] in print(parent!.title) }
Run Code Online (Sandbox Code Playgroud)

使用捕获列表的示例尝试:

class MyTest {
    var value:Int = 3

    func myFunction(f: (x:Int, y:Int) -> Int) {
        print(f(x: self.value, y: 5))
    }

    func testFunction() {
        myFunction {
            [weak self] (x, y) in   //<--- This won't work, how to specify weak self here?
            print(self.value)
            return self.value + y
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

parameters closures swift swift2

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

为什么这个实现方法看不到它的兄弟?

我有一个实现接口的类:

public class SQLiteHHSDBUtils : IHHSDBUtils
{

    void IHHSDBUtils.SetupDB()
    {
            . . .
            if (!TableExists("AppSettings"))

    . . .

    bool IHHSDBUtils.TableExists(string tableName)
    {
    . . .
Run Code Online (Sandbox Code Playgroud)

它找不到自己的兄弟坐在它下面(if (!TableExists()):

"TableExists"这个名称在当前上下文中不存在

它怎么样/为什么它看不到它?

c# interface interface-implementation

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

无法将foreach从C#转换为Java

我正在尝试翻译布尔检索模型搜索引擎,无法将这段代码翻译成Java.

C#:

foreach(KeyValuePair<string ,List<string>> p in documentCollection){}
Run Code Online (Sandbox Code Playgroud)

Java的:

for(Map<String, ArrayList<String>> p : documentCollection){}
Run Code Online (Sandbox Code Playgroud)

不幸的是Java给了我这个错误:

for-each不适用于应用程序类型

提前致谢!

c# java search-engine key-value code-translation

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

FORTRAN中的释放和内存分配问题

我遇到了deallocate的问题并分配了部分FORTRAN代码的各个方面.特别是,我认为这个问题与通过搜索我在网络上的错误消息的内存分配有关.错误消息谈论无效指针,但是,我没有在我的程序中使用任何指针

在完成我的f循环的迭代#2(见下文)之后,程序崩溃了,或者大部分时间它崩溃了,有时它只是冻结了.我相信这就是bug的关键所在.因为程序运行到了这一点.

我没有显示子程序,但由于它们适用于其他模拟组合,我有理由相信它们不是问题.我正在使用deallocate并在程序中的其他地方分配(成功)所以我很惊讶它在这里不起作用.

我只是为了便于阅读而展示了该计划的一部分.特别是,我已经删除了对我编写的子程序的调用.我希望我已经为你的程序员提供了足够的信息来帮我解决问题.如果没有,请说明您想要的其他信息,我将很乐意遵守.我已经使用各种编译器选项编译了程序,并修复了一些错误并删除了任何警告.但是,此时,编译器选项不再向我提供任何信息.

allocate(poffvect(1:6))
allocate(phi1out(1:1))
allocate(phi2out(1:1))
allocate(phi1outs1(1:1))
allocate(phi2outs1(1:1))

     dummy allocation
   allocate(phi1outind(1:1))
   allocate(phi2outind(1:1))
   allocate(phi1outinds1(1:1))
   allocate(phi2outinds1(1:1))

   do e = 1, 6
     print *,"e", e
     do f = 1, 3

       print *,"f", f, iteratst1(f), trim(filenumcharimp)

       deallocate(phi1outinds1, STAT = AllocateStatus)
     if (AllocateStatus /= 0) stop "Error during  deallocation of phi1outinds1"
     print *, "Allocatestatus of phi1outinds1 is",  AllocateStatus
     deallocate(phi2outinds1, STAT = AllocateStatus)
    print *, "DeAllocatestatus of phi1outinds2 is", AllocateStatus

     if (AllocateStatus /= 0) stop "Error during deallocation of phi2outinds1"
    print *, "we deallocate f …
Run Code Online (Sandbox Code Playgroud)

fortran memory-management glibc double-free

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

在这个例子中"&"做了什么?

正如标题所说,&在这个例子中做了什么:

#include <iostream>

using namespace std;

int main()
{
    int a = 10;
    int b = 13;
    int c = a & b;

    cout << c << endl;

    return 0;
}
Run Code Online (Sandbox Code Playgroud)

我的问题是"&"对a&b做了什么,为什么c结果为8?

我目前正在学习本教程,但没有解释"&"运算符.

c++ int operator-keyword

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