问题列表 - 第28005页

Java中计算的正确数据类型是什么

我们应该在Java中使用double或BigDecimal进行计算吗?

与双倍相比,BigDecimal的性能开销是多少?

java math types

7
推荐指数
2
解决办法
2718
查看次数

设置要在Parallelism中使用的核心

我觉得这个问题的答案是否定的,但是使用.Net 4.0的Parallelism,你可以设置运行的核心数量,即如果你运行的是四核,你可以将你的应用程序设置为只使用它们中的2个?

谢谢

.net c# vb.net parallel-processing

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

如何保持浮动div以窗口大小为中心(jQuery/CSS)

是否有一种方法(没有绑定到window.resize事件)强制浮动DIV在调整浏览器窗口时重新居中?

为了帮助解释,我想像伪代码看起来像:

div.left = 50% - (div.width / 2)
div.top = 50% - (div.height / 2)
Run Code Online (Sandbox Code Playgroud)

UPDATE

我的查询已在下面得到解答,我想发布我的任务的最终结果 - 一个jQuery扩展方法,允许您将任何块元素居中 - 希望它也可以帮助其他人.

jQuery.fn.center = function() {
    var container = $(window);
    var top = -this.height() / 2;
    var left = -this.width() / 2;
    return this.css('position', 'absolute').css({ 'margin-left': left + 'px', 'margin-top': top + 'px', 'left': '50%', 'top': '50%' });
}
Run Code Online (Sandbox Code Playgroud)

用法:

$('#mydiv').center();
Run Code Online (Sandbox Code Playgroud)

html javascript css jquery

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

将文件路径传递给R函数?

我试图将文件路径传递给R中的函数,但我失败了= /我希望有人可以帮助我.

>heat <- function(filepath) 
{ chicks <- read.table(file=filepath, dec=",", header=TRUE, sep="\t")
...
}
Run Code Online (Sandbox Code Playgroud)

当我调用该函数时,没有任何反应......

>heat("/home/.../file.txt")
Run Code Online (Sandbox Code Playgroud)

......并没有找到"小鸡"

>chicks
Error: Object 'chicks' not found
Run Code Online (Sandbox Code Playgroud)

将路径传递给函数的正确方法是什么?

r function path

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

报告服务2008:ReportExecution2005.asmx不存在

我正在尝试直接从代码生成报告(之后通过邮件发送).我在Windows服务中做到这一点.

所以这就是我正在做的事情:

Dim rview As New ReportViewer()

Dim reportServerAddress As String = "http://server/Reports_client"
rview.ServerReport.ReportServerUrl = New Uri(reportServerAddress)

Dim paramList As New List(Of Microsoft.Reporting.WinForms.ReportParameter)
paramList.Add(New Microsoft.Reporting.WinForms.ReportParameter("param1", t.Value))
paramList.Add(New Microsoft.Reporting.WinForms.ReportParameter("CurrentDate", Date.Now))

Dim reportsDirectory As String = "AppName.Reports"
Dim reportPath As String = String.Format("/{0}/{1}", reportsDirectory, reportName)

rview.ServerReport.ReportPath = reportPath
rview.ServerReport.SetParameters(paramList) 'This is where I get the exception

Dim mimeType, encoding, extension, deviceInfo As String
Dim streamids As String()
Dim warnings As Microsoft.Reporting.WinForms.Warning()

deviceInfo = "<DeviceInfo><SimplePageHeaders>True</SimplePageHeaders></DeviceInfo>"

Dim format As String = "PDF"

Dim bytes …
Run Code Online (Sandbox Code Playgroud)

reporting-services ssrs-2008

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

如何锁定剪贴板?

我想知道是否有办法从 C# 锁定和解锁剪贴板。基本上,我会在里面写一些东西,我不希望其他人在我拿起我的东西之前写信。

我怎样才能做到这一点?

c# clipboard

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

重构一个简单填充的长方法

我正在重构一个超过500行的方法(不要问我为什么)

该方法基本上从数据库中查询地图列表,并且对于列表中的每个地图进行一些计算并将该计算的值添加到地图中.然而,有太多的计算和完成,代码已经达到500多行!

这是一个示例预览:

public List<Hashmap> getProductData(...) {
   List<Hashmap> products = productsDao.getProductData(...);
   for (Product product: products) {
       product.put("Volume",new BigDecimanl(product.get("Height")*
              product.get("Width")*product.get("Length"));
   //over 10 more lines like the one above
      if (some condition here) {
         //20 lines worth of product.put(..,..) 
      } else {
         //20 lines worth of product.put(..,..)
      }
      //3 more if-else statements like the one above
      try {
         product.put(..,..)
      } catch (Exception e) {
         product.put("",..)
      }
      //over 8 more try-catches of the form above
   }
Run Code Online (Sandbox Code Playgroud)

关于如何重构这个的任何想法?

java refactoring

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

如何在iPhone中拨打以*开头的电话?

在我的应用程序中,我想拨打号码*111,当我用这个URL tel:*111来打电话,但是不能拨打电话成功,请给我一些说明,非常感谢.

[[UIApplication sharedApplication] openURL:@"tel:*111"] 
Run Code Online (Sandbox Code Playgroud)

不行.但删除时它会起作用*:

[[UIApplication sharedApplication] openURL:@"tel:111"];
Run Code Online (Sandbox Code Playgroud)

objective-c url-scheme phone-call phone-number ios

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

何时创建/销毁常量字符串?

请考虑以下代码

public static void method(String[] srgs){  
try{  

}catch(){  
System.out.println("Hello World" + "one");}  
catch(..){  
System.out.println("Hello World" + "two");}
catch(..){  
System.out.println(getString());}
}
Run Code Online (Sandbox Code Playgroud)
  1. 这些字符串何时创建?我假设在运行时发生异常时将创建字符串.字符串在运行时创建并显示.我的同伴告诉我,由于这些是常量字符串,因此只要类加载就会创建它们.那是对的吗?

  2. 收集Strings垃圾的时间是什么时候?他们是垃圾收集了吗?假设在程序生命周期中可能会多次调用相同的方法,只是缓存它们没有意义吗?

java string garbage-collection

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

行为树实现

我正在寻找任何语言的行为树实现,我想了解更多关于它们如何实现和使用,所以可以自己滚动,但我只能找到一个 Owyl,不幸的是,它不包含如何使用它的示例.

任何人都知道我可以浏览代码的任何其他开源代码,看看他们如何使用的一些例子等?

编辑:行为树是数据结构的名称.

language-agnostic algorithm tree data-structures behavior-tree

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