active questions tagged method - Stack Overflowmost recent 30 from stackoverflow.com2009-11-26T18:17:24Zhttp://stackoverflow.com/feeds/tag/methodhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1802965/create-a-new-method-from-selecting-existing-code-block-eclipse1Create a new method from selecting existing code block, Eclipseian_scho_es2009-11-26T10:46:43Z2009-11-26T11:49:21Z
<p>I'm using <em>Eclipse 3.something</em> and would like to know if it is possible to create a new method from selecting a block of code? Obviously the method's signature would contain the necessary existing references and we can't return more than one variable from a method.</p>
<p>I have various methods where code related to presentation is mixed with code related to the logic. TY</p>
http://stackoverflow.com/questions/1799437/what-is-the-best-method-name-you-have-ever-come-across0What is the best method name you have ever come across? [closed]Anton2009-11-25T19:34:52Z2009-11-25T19:43:39Z
<p>What is the best method name you have ever come across?</p>
http://stackoverflow.com/questions/1784413/how-do-i-limit-the-accessing-of-a-method-across-an-app0How do I limit the accessing of a method across an app?Shpigford2009-11-23T16:46:24Z2009-11-24T02:32:56Z
<p>So I have a method and corresponding partial for including a set of random photos in the sidebar of certain areas of our site.</p>
<p>Right now I have a <code>random_photos</code> method in ApplicationController set with a <code>before_filter</code>.</p>
<p>That works in the sense that it makes the contents of the <code>random_photos</code> method available wherever I need it, but it also unnecessarily executes some complex SQL queries when I don't know it too (ie, when I don't need to access those random photos).</p>
<p>So, how can I limit the accessing of the <code>random_photos</code> method to only when I really <em>need</em> it?</p>
http://stackoverflow.com/questions/1777245/expecting-tassoc-in-a-rails-file0expecting tASSOC in a Rails filesteven_noble2009-11-22T00:08:18Z2009-11-23T08:39:01Z
<p>I'm sure I've done something stupid here, but I just can't see it.</p>
<p>I call the breadcrumb method in the application view.</p>
<p>app/helpers/breadcrumbs_helper.rb says:</p>
<pre><code>module BreadcrumbsHelper
def breadcrumb
@crumb_list = []
drominay_crumb_builder
project_crumb_builder
content_tag(:div, :id => "breadcrumbs", @crumb_list.map { |list_item| crumb_builder(list_item) })
end
def crumb_builder(list_item)
if list_item == @crumb_list.last
content_tag(:span, list_item['body'], :class => list_item['crumb'])
else
body = ["list_item['body']", "&nbsp;&#x2192;&nbsp;"].join
link_to(body, list_item['url'], :class => list_item['crumb'])
end
end
def drominay_crumb_builder
list_item = Hash.new
list_item['body'] = "Drominay"
list_item['url'] = "root"
@crumb_list << list_item
end
def project_crumb_builder
end
end
</code></pre>
<p>Why oh why am I getting this "expecting tASSOC" error? (And what is a tASSOC anyway?)</p>
<pre><code>steven-nobles-imac-200:drominay steven$ script/server
=> Booting Mongrel (use 'script/server webrick' to force WEBrick)
=> Rails 2.2.2 application starting on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
** Starting Mongrel listening at 0.0.0.0:3000
** Starting Rails with development environment...
Exiting
/Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require': /Users/steven/Drominay/app/helpers/breadcrumbs_helper.rb:7: syntax error, unexpected ')', expecting tASSOC (SyntaxError)
/Users/steven/Drominay/app/helpers/breadcrumbs_helper.rb:29: syntax error, unexpected $end, expecting kEND
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
from /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
from /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
from /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
from /Users/steven/Drominay/app/helpers/application_helper.rb:5
from /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:382:in `load_without_new_constant_marking'
from /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:382:in `load_file'
from /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
... 56 levels...
from /Users/steven/.gem/ruby/1.8/gems/rails-2.2.2/lib/commands/server.rb:49
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
from script/server:3
</code></pre>
http://stackoverflow.com/questions/1178953/iphone-custom-class-wont-access-method0iPhone - Custom Class Won't Access MethodRobert Jones2009-07-24T17:12:37Z2009-11-21T07:00:02Z
<p>I'm trying my hand at some iPhone programming and I've run across something that may be fairly obvious to veterans but I'm not exactly sure why it's happening. I have two UIViewController classes, and I want to access a method from the other class. I have two NSObject classes associated with both of them in IB (with the Class file as UpdateClass for each), and I'm trying to create a class and call a method. Seems pretty easy, but the problem is that it's calling the method (according to NSLog) but it's not updating the labels. Here's my code:</p>
<pre><code>//UpdateClass.h
#import <Foundation/Foundation.h>
@interface UpdateClass : NSObject {
IBOutlet UILabel *lbl1;
IBOutlet UILabel *lbl2;
}
@property (nonatomic, retain) IBOutlet UILabel *lbl1;
@property (nonatomic, retain) IBOutlet UILabel *lbl2;
- (void)updateLabels;
@end
//UpdateClass.m
#import "UpdateClass.h"
@implementation UpdateClass
@synthesize lbl1;
@synthesize lbl2;
- (void)updateLabels {
NSString *someWord = @"Whatever"; // This could be anything
NSLog(@"NSObject Update");
[lbl1 setText:someWord];
[lbl2 setText:someWord];
}
@end
//ViewController1.h
#import <UIKit/UIKit.h>
@class UpdateClass;
@interface ViewController1 : UIViewController {
IBOutlet UIButton *button1;
NSObject *UpdateClassObject;
UpdateClass *updateClass;
}
@property (nonatomic, retain) IBOutlet UIButton *button1;
@property (nonatomic, retain) NSObject *UpdateClassObject;
@property (nonatomic, retain) UpdateClass *updateClass;
- (void)updateLabels:(id)sender;
@end
//ViewController1.m
#import "ViewController1.h"
#import "UpdateClass.h"
@implementation ViewController1
@synthesize button1;
@synthesize UpdateClassObject;
@synthesize updateClass;
- (void)viewDidLoad {
[super viewDidLoad];
updateClass = [[UpdateClass alloc] init];
}
- (void)updateLabels:(id)sender; { //This is connected to TouchDown on button1
NSLog(@"Calls UpdateLabels");
[updateClass updateLabels]; //Calls the class method
}
//ViewController2.h
#import <UIKit/UIKit.h>
@class UpdateClass;
@interface ViewController2 : UIViewController {
IBOutlet UIButton *button2;
NSObject *UpdateClassObject;
UpdateClass *updateClass;
}
@property (nonatomic, retain) IBOutlet UIButton *button2;
- (void)updateLabels:(id)sender;
@end
//ViewController2.m
#import "ViewController2.h"
#import "UpdateClass.h"
@implementation ViewController2
@synthesize button2;
@synthesize UpdateClassObject;
@synthesize updateClass;
- (void)viewDidLoad {
[super viewDidLoad];
updateClass = [[UpdateClass alloc] init];
}
- (void)updateLabels:(id)sender; { //This is connected to TouchDown on button2
NSLog(@"Calls UpdateLabels");
[updateClass updateLabels]; //Calls the class method
}
</code></pre>
<p>So there is an NSObject hooked up in IB for both Views. There is a label on each view hooked up to the NSObject and the File's Owner (may not be necessary to hook them up to both). When the button is pressed (which is also hooked up properly in IB), the label is supposed to change to some string. NSLog reports that the methods are called, but the labels don't change. What's wrong here? </p>
<p>(note: there may be some small mistakes as I had to type out some of this because I don't have all the code with me at the moment).</p>
http://stackoverflow.com/questions/437620/java-synchronized-methods-lock-on-object-or-class4Java synchronized methods: lock on object or classjbu2009-01-13T00:48:39Z2009-11-19T22:34:14Z
<p>The Java Tutorials say: "it is not possible for two invocations of synchronized methods on the same object to interleave."</p>
<p>What does this mean for a static method? Since a static method has no associated object, will the synchronized keyword lock on the class, instead of the object?</p>
http://stackoverflow.com/questions/1765922/python-binding-method0Python: Binding method pi2009-11-19T19:30:29Z2009-11-19T19:40:24Z
<p>In following example I am trying to bind a method object via <em>types.MethodType(...)</em>. It does not seem to work. Any suggestions? Thanks in advance.</p>
<pre><code>import types
class Base:
def payload(self, *args):
print "Base:payload"
class Drvd(Base):
def iter(self, func):
derived_func = types.MethodType(func, self, Drvd) # bind
print "drvd_func:", derived_func
derived_func() # result: calls Base:payload
# expected:calls Drvd:payload; why???
def payload(self, *args):
print "Drvd:payload"
derived = Drvd()
base_func = Base.payload
print "base_func:", base_func
derived.iter(base_func) # pass unbound method object
</code></pre>
<p>The output shows:</p>
<p>base_func: <unbound method Base.payload><br>
drvd_func: <bound method Drvd.payload of <<strong>main</strong>.Drvd instance at 0x00B51648>><br>
Base:payload</p>
http://stackoverflow.com/questions/1763366/visual-studio-intellisense-not-showing-methods-on-generic-overload3Visual Studio Intellisense not showing methods on generic overloadJason2009-11-19T13:39:41Z2009-11-19T14:13:31Z
<p>Given the following two interfaces (these are small examples, not my actual implementation):</p>
<pre><code>public interface IAssertion<T> {
IAssertion<T> IsNotNull();
IAssertion<T> Evaluate(Predicate<T> predicate)
}
public interface IStringAssertion : IAssertion<string> {
IStringAssertion IsNotNullOrEmpty();
}
</code></pre>
<p>and a static factory that will return the appropriate interface, for example:</p>
<pre><code>public static class Require {
public static IAssertion<T> That<T>(T value) {
...
}
public static IStringAssertion That(string value) {
...
}
}
</code></pre>
<p>I should be able to do the following:</p>
<pre><code>public void TestMethod(SomeClass a, string b) {
Require.That(a).IsNotNull();
Require.That(b).IsNotNullOrEmpty().Evaluate(SomeMethodThatAcceptsString);
}
</code></pre>
<p>This code compiles and will actually run. I can even set up tests that pass, such as:</p>
<pre><code>Assert.IsInstanceOf<IStringAssertion>(Require.That(string.Empty));
Assert.IsNotInstanceOf<IStringAssertion>(Require.That(new object());
</code></pre>
<p>The problem I am running into and the whole point of this question, is that Visual Studio 2005 intellisense is not resolving the differences between the two.</p>
<p>When I type <code>Require.That("...").</code> I should expect to see a list of </p>
<pre>
Evaluate(Predicate predicate)
IsNull()
IsNotNullOrEmpty()
</pre>
<p>but instead I see nothing.</p>
<p>I would really like to keep the same method name for the overloads. I want to keep the generic overload because of the predicate in the Evaluate method of the IAssertion interface.</p>
<p>Also, I know I can do something close to this using extension methods, but that is not an option because I still want to support .Net 2.0 and would like to keep the fluent api.</p>
<p><strong>Updated:</strong></p>
<p>There have been some good answers that involve third party add-ons to Visual Studio. Unfortunately I am not in a position to either install or purchase add-on tools for Visual Studio due to the corporate red tape that I am developing under. (I hate politics!)</p>
<p>I am looking for a code only option that will work in both Visual Studio 2005 and Visual Studio 2008.</p>
<p><strong>Updated:</strong></p>
<p>This works in Visual Studio 2008. Thank you, <a href="http://stackoverflow.com/users/55847/luke">Luke</a>. That only leaves Visual Studio 2005.</p>
http://stackoverflow.com/questions/1754894/getclass-getmethodname-unkown0getClass().getMethod("name", unkown)MrThys2009-11-18T10:05:37Z2009-11-18T12:55:09Z
<p>For a really abstract application I am creating, I need to call methods without knowing their parameter types and only knowing the parameters in a String shape.</p>
<p>Let say I have the method;</p>
<pre><code>getNames(String like, int amount);
</code></pre>
<p>and I have a array of strings containing the 2 parameters, so lets say I have;</p>
<pre><code>String[] params = new String[] {"jack", "25"};
</code></pre>
<p>Is there any way that I can get and invoke this method using the params array?</p>
http://stackoverflow.com/questions/1743715/behaviour-of-final-static-method9Behaviour of final static methodHarish2009-11-16T17:43:04Z2009-11-16T20:48:57Z
<p>I have been playing around with modifiers with static method and came across a weird behaviour.</p>
<p>As we know, static methods cannot be overridden, as they are associated with class rather than instance.</p>
<p>So if I have the below snippet, it compiles fine</p>
<pre><code>//Snippet 1 - Compiles fine
public class A{
static void ts(){}
}
class B extends A{
static void ts(){ }
}
</code></pre>
<p>But if I include final modifier to static method in class A, then compilation fails
<strong>ts() in B cannot override ts() in A; overridden method is static final</strong>.</p>
<p>Why is this happening when static method cannot be overridden at all?</p>
http://stackoverflow.com/questions/1736234/what-is-meant-by-implement-a-wrapper-method2What is meant by "implement a wrapper method"?Shawn2009-11-15T01:14:55Z2009-11-16T14:44:40Z
<p>I have been given a programming assignment and one of the things I have to do is implement method which a wrapper method which relies on another method to sort the coordinates from lowest to highest. I am unsure on what exactly is meant by implementing a wrapper method.</p>
<pre><code>static void sortCoordsByZ(double[][] coords) {
//implement the wrapper method for the recursive sort method. all work is done the recursive sort method
}
static void recursiveSort(double[][] coords, int lo, int hi) {
//recursive sort method
}
</code></pre>
http://stackoverflow.com/questions/1716440/applescript-index-of-substring-in-string0AppleScript: Index of substring in stringAlexsander Akers2009-11-11T16:36:43Z2009-11-15T10:47:54Z
<p>I want to create a function that returns a substring of a specific string from the beginning of said string up to but not including the start of another specific string. Ideas?</p>
<p><hr></p>
<p>So something like:</p>
<pre><code>substrUpTo(theStr, subStr)
</code></pre>
<p>so if I inputted <code>substrUpTo("Today is my birthday", "my")</code>, it would return a substring of the first argument up to but not including where the second argument begins. (i.e. it would return <code>"Today is "</code>)</p>
http://stackoverflow.com/questions/1736450/unable-to-return-to-main-from-a-method-reading-standard-input-stream0unable to return to main() from a method reading standard input streamjoel_nc2009-11-15T03:17:41Z2009-11-15T03:27:11Z
<p>I am basically trying to return from a method which reads user input from the standard input stream. Since the user has the option to quit the application, I am trying to figure out the best way to do this <a href="http://stackoverflow.com/questions/1736245/what-is-an-appropriate-way-to-programmatically-exit-an-application">exit</a>. Ideally I will be able to return from <code>begin()</code> and let <code>main()</code> finish, thus quiting the applicaiton.</p>
<pre><code>public static void main(String[] args) {
begin();
}
private static void begin(){
Machine aMachine = new Machine();
String select=null;
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
while(true){
try {
select = br.readLine();
} catch (IOException ioe) {
System.out.println("IO error trying to read your selection");
return;
}catch(Exception ex){
System.out.println("Error trying to evaluate your input");
return;
}
if (Pattern.matches("[RQrq1-6]", select)) {
aMachine.getCommand(select.toUpperCase()).execute(aMachine);
}
else {
System.out.println(aMachine.badCommand()+select);
aMachine.getStatus();
}
}
}
</code></pre>
<p>The main logic takes place when <code>aMachine</code> executes a given command by the user with this method:</p>
<pre><code>aMachine.getCommand(select.toUpperCase()).execute(aMachine);
</code></pre>
<p>Again, the issue is how to quit the application once the user enters the command Q, or q. The quit command is like this:</p>
<pre><code>public class CommandQuit implements Command {
public void execute(Machine aMachine) {
aMachine.getStatus();
return; //I would expect this to force begin() to exit and give control back to main()
}
}
</code></pre>
<p>Now following the advice from my previous <a href="http://stackoverflow.com/questions/1736245/what-is-an-appropriate-way-to-programmatically-exit-an-application">question</a>, to quit the application, I am trying to return to main() and basically let main() complete. This way I avoid any use of <code>System.exit(0)</code>, although that would be fine too.</p>
<p>So, in this example, I have a <code>return</code> statement in the <code>execute</code> method of the <code>CommandQuit</code> class which is called when we receive a Q, or q from the user. However, when <code>begin()</code> executes a quit command, instead of returning from the <code>while(true)</code> loop, out of <code>begin()</code>, and back into <code>main()</code>, the control flow never seems to respond to the <code>return;</code> within the <code>execute</code> method of CommandQuit.</p>
<p>Is there anything that I am missing in my example? Perhaps something is so obvious that I can't see it at the moment. Thanks for any help.</p>
http://stackoverflow.com/questions/1728446/what-are-best-efficent-ways-to-call-webservice-methods-from-javascript0What are best efficent ways to call WebService methods from JavaScript?pencilcake2009-11-13T10:40:05Z2009-11-13T10:46:30Z
<p>Hi,</p>
<p>Actually I came up with this question, because of an example in one book I have tried and which did not work somehow. I am following "Professional JavaScriptâ„¢ for Web Developers
Nicholas C. Zakas" from Wrox. In its WebService chapter it is using "webservice.htc" webservice behavior to call a web service. I have tried to run that and could not make it work (I aasked about it as well <a href="http://stackoverflow.com/questions/1723358/how-to-use-webservice-behaviour-in-ie">here</a>)</p>
<p>When I asked a friend of mine for help, he was quite surprised that I use webservice.htc. He said why I do not use microsoft ajax, jQuery, mootools, yui javascript,..... Which works in all browsers. </p>
<p>So, if there are many ways to do that and webservice.htc is not commonly used nowadays, how am I going to decide what to use? How can I compare them to see which works fine with my needs? Simply I need to learn how to call a webservice method from JavaScript </p>
<p>Any recommendations? </p>
<p>thanks.</p>
http://stackoverflow.com/questions/1723875/can-method-parameters-be-dynamic-in-c1Can method parameters be dynamic in C#Skipperkongen2009-11-12T17:16:28Z2009-11-12T21:28:14Z
<p>In c# 4.0, are dynamic method parameters possible, like in the following code?</p>
<pre><code>public string MakeItQuack(dynamic duck)
{
string quack = duck.Quack();
return quack;
}
</code></pre>
<p>I've many cool examples of the dynamic keyword in C# 4.0, but not like above. This question is of course inspired by how python works.</p>
http://stackoverflow.com/questions/1723696/how-to-use-a-method-from-a-class-in-another-class-without-extending2How to use a method from a class in another class without extendingNima2009-11-12T16:54:06Z2009-11-12T17:15:28Z
<p>Sorry if my question sounds weird lol I'll try to explain.
I have 4 classes: Karakter, Karakters, Orc, Human. Orc and Human both extend Karakter. Karakters is an ArrayList with Karakter in it. </p>
<p>I have a method in both Orc and Human called: public String getRace(). Now I want to use this method in Karakters?!! When I try to do this, it fails because Orc and Human extend Karakter and not Karakters! Is there a way to do this? I heard something about making something abstract :P </p>
<p>Thanks</p>
http://stackoverflow.com/questions/1723625/setting-the-page-title-in-net-using-c-from-a-class1Setting the Page-Title in .Net using C# from a Classsia2009-11-12T16:43:58Z2009-11-12T16:53:07Z
<p>Question,</p>
<p>How do i set the title of a page from a class. Is it even possible? I can and have set the page title from a page itself and a usercontrol.</p>
<p>Can I, How Do I do this via a class using C# .Net</p>
<p>Here is what im looking to do,
From the Aspx Page i want to call a function that passes in the string title, and have the class set the page title.</p>
<p><strong>SomePage.Aspx.CS</strong></p>
<blockquote>
<p>page_onload()<br>
{<br>
setPageTitle(titleValue);<br>
}</p>
</blockquote>
<p><strong>SetPageTitleClass.CS</strong></p>
<blockquote>
<p>public static void setPageTitle(string iTitle)<br>
{<br>
Page.title = iTitle;
}</p>
<p>The problem is "Page.Title" is not available from the Class</p>
</blockquote>
<p>Thanks again</p>
<p>Sia</p>
http://stackoverflow.com/questions/1723096/using-the-jquery-width-and-height-methods0Using the jQuery width() and height() methodsAlexsander Akers2009-11-12T15:35:06Z2009-11-12T15:47:06Z
<p>Can you use the <code>.width()</code> and <code>.height()</code> methods to increase the height like <code>$('x').width('+=2px')</code> or <code>$('x').height('+=2px')</code>?</p>
<p>I couldn't find any information about this on the jQuery website, but I also haven't seen anything to suggest that this doesn't work.</p>
http://stackoverflow.com/questions/1719527/python-decorators-and-class-methods-and-evaluation-django-memoize1Python decorators and class methods and evaluation -- django memoizecompumike2009-11-12T02:32:57Z2009-11-12T04:39:55Z
<p>I have a working memoize decorator which uses Django's cache backend to remember the result of a function for a certain amount of time. I am specifically applying this to a class method.</p>
<p>My decorator looks like:</p>
<pre><code>def memoize(prefix='mysite', timeout=300, keygenfunc=None):
# MUST SPECIFY A KEYGENFUNC(args, kwargs) WHICH MUST RETURN A STRING
def funcwrap(meth):
def keymaker(*args, **kwargs):
key = prefix + '___' + meth.func_name + '___' + keygenfunc(args, kwargs)
return key
def invalidate(*args, **kwargs):
key = keymaker(*args, **kwargs)
cache.set(key, None, 1)
def newfunc(*args, **kwargs):
# construct key
key = keymaker(*args, **kwargs)
# is in cache?
rv = cache.get(key)
if rv is None:
# cache miss
rv = meth(*args, **kwargs)
cache.set(key, rv, timeout)
return rv
newfunc.invalidate = invalidate
return newfunc
return funcwrap
</code></pre>
<p>I am using this on a class method, so something like:</p>
<pre><code>class StorageUnit(models.Model):
@memoize(timeout=60*180, keygenfunc=lambda x,y: str(x[0].id))
def someBigCalculation(self):
...
return result
</code></pre>
<p>The actual memoization process works perfectly! That is, a call to </p>
<pre><code>myStorageUnitInstance.someBigCalculation()
</code></pre>
<p>properly uses the cache. OK, cool!</p>
<p>My problem is when I try to manually invalidate the entry for a specific instance, where I want to be able to run</p>
<pre><code>myStorageUnitInstance.someBigCalculation.invalidate()
</code></pre>
<p>However, this doesn't work, because "self" doesn't get passed in and therefore the key doesn't get made. I get a "IndexError: tuple index out of range" error pointing to my lambda function as shown earlier.</p>
<p>Of course, I can successfully call:</p>
<pre><code>myStorageUnitInstance.someBigCalculation.invalidate(myStorageUnitInstance)
</code></pre>
<p>and this works perfectly. But it "feels" redundant when I'm already referencing a specific instance. How can I make Python treat this as an instance-bound method and therefore properly fill in the "self" variable?</p>
http://stackoverflow.com/questions/623899/p-method-in-ruby-hard-to-search-for0p method in Ruby hard to search forMark2009-03-08T17:02:07Z2009-11-11T21:22:20Z
<p>I'm trying to find info on the p method in Ruby. It seems to produce internal info on the properties of a class but when I try to search for it I get every word that has the letter p in it.</p>
http://stackoverflow.com/questions/1709788/how-to-pass-a-dictionary-to-a-function0How To Pass a Dictionary To a FunctionWayfarer2009-11-10T17:38:20Z2009-11-11T18:06:01Z
<p>Alright, so I think I'm doing this the right way. I'm new to objective-C, so I'm not sure about the syntax... I have a set of code that I need to call multiple times, from different files. So I made a new class that has a method in it that I'll call and pass it the values that it needs.</p>
<p>Because I am passing different values I've put them in a dictionary and decided to just pass the dictionary. Here is that code:</p>
<pre><code>NSNumber *testNum = [NSNumber numberWithInt:varMoney];
NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
[dictionary setObject:@"OMG, Object 1!!!!" forKey:@"1"];
[dictionary setObject:@"Number two!" forKey:@"2"];
[dictionary setObject:testNum forKey:@"3"];
</code></pre>
<p>This code creates a test variable, and then puts it into the dictionary "dictionary." That all works, I have my nice little dictionary. However, now I need to create the class and it's method that will recieve the dictionary, and do something with it.</p>
<p>This is my class header file:</p>
<pre><code>#import <UIKit/UIKit.h>
@interface EndOfTurnObjC : UIView {
}
@end
</code></pre>
<p>And this is the implementation file:</p>
<pre><code>#import "EndOfTurnObjC.h"
@implementation EndOfTurnObjC
- (id)initWithFrame:(CGRect)frame {
if (self = [super initWithFrame:frame]) {
// Initialization code
}
return self;
}
- (void)dealloc {
[super dealloc];
}
@end
</code></pre>
<p>I haven't created any of the real code, because I'm not sure how to do the passing. I need to create a function (Method?) in the class that will take a Dictionary has a parameter, and then return the dictionary.</p>
<p>I also have no idea how to call such a function because it's in the class. So, the questions are:
1: How do I define the method in the class to accept the dictionary as a parameter (and then perhaps some example code to pull out one of the objects in a dictionary, so I can be sure it works)</p>
<p>2: How do I return the dictionary at the end of the method?</p>
<p>3: How do I call this method, in the class, from another class? (I know it involves making an object of thing class and calling the method of the object... I think, but I'm not sure about the syntax.)</p>
<p>Please include relavent code for the 3 files (header, implementation, and the other class that I call from). Thank you so much, I've been working on this particular problem for a while now.</p>
http://stackoverflow.com/questions/1708265/how-can-i-get-a-reference-to-a-method-that-contains-the-arguments-used-for-invoca2How can I get a reference to a method that contains the arguments used for invocations, in Ruby?Geo2009-11-10T14:14:13Z2009-11-10T16:53:33Z
<p>Given this code:</p>
<pre><code>a = {1=>2}
m = a.method(:[])
</code></pre>
<p>I know that I can now use :</p>
<pre><code>value = m.call(1)
</code></pre>
<p>and it will return 2. The thing is, what do I need to change so that I can call the method directly like :</p>
<pre><code>m.call()
</code></pre>
<p>and it will get the 1 sent as a parameter? It would be nice to be able to write something like :</p>
<pre><code>m = a.method(:[],1) # where the symbol is the method, and 1 will be the parameter it will be called with
</code></pre>
<p>The thing is, I'd like to delay the execution of certain parts of my script until some objects get created, and I'd like to avoid rewriting EVERYTHING to use lambdas.</p>
http://stackoverflow.com/questions/1705873/prevent-hack-a-site-by-linux-multi-support-ability0prevent hack a site by linux multi Support ability saeed arab sheybani2009-11-10T05:47:07Z2009-11-10T15:36:11Z
<p>One of the site Hacking methods written in php in apache server
The use Images with prefix. Php such as
<strong>.php.gif</strong> that apache is trying to run it
How can htaccess configuration to disable this feature</p>
http://stackoverflow.com/questions/1702432/how-to-pass-an-array3How to pass an array?Gero2009-11-09T17:17:33Z2009-11-09T17:23:40Z
<p>Hello!</p>
<p>How could I pass an array with PHP by GET method?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1698524/c-return-and-comparation-inline0C return and comparation inlineSheldon2009-11-09T00:42:43Z2009-11-09T00:54:38Z
<p>Hi everyone,</p>
<p>I'm just to figure out what does this method do, I know there must be a way to put this line by line, can you help me please?</p>
<p>Thanks</p>
<pre><code>int
conditional ( int n, EXPRESSION * * o )
{
return (evaluateExpression( *o++ )? evaluateExpression( *o ) : evaluateExpression( *++o ) );
}
</code></pre>
<p>UPDATE: This is the evaluateExpression Code</p>
<pre><code>int
evaluateExpresion ( EXPRESSION * e)
{
__asm
{
mov eax,dword ptr [e]
movsx ecx,byte ptr [eax]
test ecx,ecx
jne salto1
mov eax,dword ptr [e]
mov eax,dword ptr [eax+4]
jmp final
salto1:
mov esi,esp
mov eax,dword ptr [e]
mov ecx,dword ptr [eax+8]
push ecx
mov edx,dword ptr [e]
movsx eax,byte ptr [edx]
push eax
mov ecx,dword ptr [e]
mov edx,dword ptr [ecx+4]
call edx
add esp,8
final:
}
}
</code></pre>
http://stackoverflow.com/questions/1687511/how-to-drag-in-the-animation-in-iphone-application0how to drag in the animation in iphone application?Mishal2009-11-06T13:10:46Z2009-11-06T13:16:09Z
<p>Hi,</p>
<p>Iphone application is using the static co-ordinates to reach at some points in the application,which is based on the button event.
But what i want is when i drag the item than it should reach at some point where i drop it and again from the drop point it should move to the other point.</p>
<p>can anybody guide me what is the method available in the iphone animation part which can serve my pupose.?</p>
<p>please provide any method code snippet for Drag the item or any useful link,which would be appreciated.</p>
<p>Thanks,</p>
<p>Mishal shah.</p>
http://stackoverflow.com/questions/1680877/axapta-edit-form-field-values0Axapta: Edit form field valuesBrad2009-11-05T14:21:45Z2009-11-05T14:33:23Z
<p>Using a 'clicked' override on a button, I'd like to modify values in an Axapta form.</p>
<p>I'm able to get data from the form field using:<br>
str strOld = Form_FieldName.valueStr();</p>
<p>I'm able to prepend text to the field using:<br>
Form_FieldName.pasteText(strNew);</p>
<p>I can't seem to find a .clear method or .value= method. I'd like to replace the entire value in the field with new information.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1597152/2-valid-requests-and-then-timeout02 valid requests and then timeoutmiro2009-10-20T20:37:40Z2009-11-04T20:43:24Z
<p>Here is my code. It iterates all files from database and try to get the length of the web file. It works only 2 times. After that it gives timeout. If i restart the application it process again 2 files and then fail. I have no idea what might be the problem. I appreciate any help.</p>
<pre><code> public void GetFilesSize()
{
List<int> ftl = new List<int>(){(int)eFileTypes.JADFile, (int)eFileTypes.SISFile, (int)eFileTypes.SITFile, (int)eFileTypes.ZIPFile };
foreach (File f in dc.Files.Where(fg => ftl.Contains(fg.FileTypeID) && fg.Size == 0))
{
try
{
WebRequest request = WebRequest.Create(new Uri(f.MSWebPath));
request.Method = "HEAD";
request.Timeout = 2000;
WebResponse response = request.GetResponse();
dc.Files.Single(f1 => f1.FileID == f.FileID).Size = (int)response.ContentLength;
dc.SubmitChanges();
}
catch (Exception ex)
{
Console.WriteLine(ex.ToString());
}
}
}
</code></pre>
http://stackoverflow.com/questions/1676401/c-problem-calling-method-inside-a-string-property-setter1C#: Problem calling method inside a string property setteralexD2009-11-04T20:28:47Z2009-11-04T20:35:28Z
<p>I have a string property that defines a filename for an xml file. When the user inputs this filename into the property, I have the setter calling a parseXml() function immediatly after setting 'fileName = value' to populate a dataTable with the data from the XML file so it displays in the designer. For some reason, when I have this function call in the property setter, the setter ends up getting called every twice every time I change the property, with the 2nd time being an empty string which causes an error. Why is it doing this?</p>
<pre><code>public String FileName
{
get { return fileName; }
set
{
fileName = value;
parseXmlFile();
}
}
</code></pre>
http://stackoverflow.com/questions/1636181/function-method-overloading-c-data-type-confusion2Function/Method Overloading C++: Data type confusion?Tom2009-10-28T09:49:47Z2009-11-03T15:34:21Z
<p>Hi,
I'm having some trouble overloading methods in C++.
As an example of the problem, I have a class with a number of methods being overloaded, and each method having one parameter with a different data type.
My question: is there a particular order in the class these methods should appear in, to make sure the correct method is called depending on its parameters data type?</p>
<pre><code>class SomeClass{
public:
...
void Method(bool paramater);
void Method(std::string paramater);
void Method(uint64_t paramater);
void Method(int64_t paramater);
void Method(uint8_t paramater);
void Method(int8_t paramater);
void Method(float paramater);
void Method(double paramater);
void Method(ClassXYZ paramater);
}
</code></pre>
<p>I noticed there was problem because when running:</p>
<pre><code>Method("string");
</code></pre>
<p>it was calling:</p>
<pre><code>Method(bool paramater);
</code></pre>