Questions tagged «function»

函数(也称为过程,方法,子例程或例程)是旨在执行单个特定任务的一部分代码。使用此标记可解决特别涉及创建或调用函数的问题。为了帮助实现执行任务的功能,请改用[algorithm]或特定于任务的标记。


10
如何查看功能的源代码?
我想查看功能的源代码以了解其工作原理。我知道我可以通过在提示符下键入函数名称来打印该函数: > t function (x) UseMethod("t") <bytecode: 0x2332948> <environment: namespace:base> 在这种情况下,是什么UseMethod("t")意思?如何找到这实际上是正在使用的源代码,例如:t(1:10)? 有没有当我看到之间的差异UseMethod,当我看到standardGeneric和showMethods,与with? > with standardGeneric for "with" defined from package "base" function (data, expr, ...) standardGeneric("with") <bytecode: 0x102fb3fc0> <environment: 0x102fab988> Methods may be defined for arguments: data Use showMethods("with") for currently available ones. 在其他情况下,我可以看到正在调用R函数,但是找不到这些函数的源代码。 > ts.union function (..., dframe = …
550 r  function  r-faq 


12
在JavaScript函数中定义全局变量
是否可以在JavaScript函数中定义全局变量? 我想在其他函数中使用trailimage变量(在makeObj函数中声明)。 <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <title></title> <script type="text/javascript"> var offsetfrommouse = [10, -20]; var displayduration = 0; var obj_selected = 0; function makeObj(address) { **var trailimage = [address, 50, 50];** document.write('<img id="trailimageid" src="' + trailimage[0] + '" border="0" style=" position: absolute; visibility:visible; left: 0px; top: 0px; width: ' …

12
什么是C中的“静态”功能?
问题是关于平原 C 功能,不是 C ++ static 方法,如注释中所阐明。 我了解什么是static变量,但是什么是static函数? 为何为什么要声明一个函数,void print_matrix比如说a.c(WITHOUT a.h)并包含"a.c"-我得到了"print_matrix@@....) already defined in a.obj",但是如果我声明了它,static void print_matrix那么它将被编译吗? 更新只是为了澄清问题- .c正如许多人所指出的那样,我知道包含内容是不好的。我只是暂时清除空间,main.c直到更好地了解如何将所有这些功能分为适当的文件.h和.c文件。只是一个临时的快速解决方案。

15
从Python中的另一个文件调用函数
设置:我需要在程序中使用每个函数的.py文件。 在此程序中,我需要从外部文件调用该函数。 我试过了: from file.py import function(a,b) 但是我得到了错误: ImportError:没有名为“ file.py”的模块;文件不是包 我该如何解决这个问题?
496 python  file  function  import 


18
如何从Bash函数返回字符串值
我想从Bash函数返回一个字符串。 我将用Java编写示例以显示我想做的事情: public String getSomeString() { return "tadaa"; } String variable = getSomeString(); 下面的示例在bash中有效,但是有更好的方法吗? function getSomeString { echo "tadaa" } VARIABLE=$(getSomeString)



9
Swift类中的静态vs类函数/变量?
以下代码在Swift 1.2中进行编译: class myClass { static func myMethod1() { } class func myMethod2() { } static var myVar1 = "" } func doSomething() { myClass.myMethod1() myClass.myMethod2() myClass.myVar1 = "abc" } 静态函数和类函数有什么区别?我应该使用哪一个?何时使用? 如果我尝试定义另一个变量class var myVar2 = "",它说: 类中尚不支持的类存储属性;您是说“静态”吗? 如果支持此功能,则静态变量和类变量之间有什么区别(即,当两者都在类中定义时)?我应该使用哪一个?何时使用? (Xcode 6.3)

12
如何获取Python函数的源代码?
假设我有如下定义的Python函数: def foo(arg1,arg2): #do something with args a = arg1 + arg2 return a 我可以使用获取函数的名称foo.func_name。如上所述,我如何以编程方式获取其源代码?
406 python  function 

11
使用AngularJS按Enter提交表单
在这种情况下,按Enter键时必须使这些输入调用函数的选项是什么? // HTML view // <form> <input type="text" ng-model="name" <!-- Press ENTER and call myFunc --> /> <br /> <input type="text" ng-model="email" <!-- Press ENTER and call myFunc --> /> </form> // Controller // .controller('mycontroller', ['$scope',function($scope) { $scope.name = ''; $scope.email = ''; // Function to be called when pressing …


4
将字典作为关键字参数传递给函数
我想使用字典在python中调用一个函数。 这是一些代码: d = dict(param='test') def f(param): print(param) f(d) 这可以打印,{'param': 'test'}但我希望只打印test。 我希望它可以类似地工作以获取更多参数: d = dict(p1=1, p2=2) def f2(p1, p2): print(p1, p2) f2(d) 这可能吗?

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.