Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (3)

39
votes
5answers
2k views

Undefined, unspecified and implementation-defined behavior

What is the difference between undefined, unspecified, and implementation-defined behavior in C and C++?
32
votes
4answers
594 views

Is there a reference of default keyboard behaviours for Silverlight 4 controls?

In the official Microsoft documentation there's only one paragraph mentioning how controls behave to keyboard (at least what I could find): ...
25
votes
2answers
10k views

Why is \r a newline for Vim?

From question How to replace a character for a newline in Vim?. You have to use \r when replacing text for a newline, like this :%s/%/\r/g But when replacing end of lines and newlines for a ...
12
votes
4answers
510 views

Validity of the code

Consider the following code : void populate(int *arr) { for(int j=0;j<4;++j) arr[j]=0; } int main() { int array[2][2]; populate(&array[0][0]); } There was a discussion ...
12
votes
3answers
1k views

What's the difference between Control.Select() and Control.Focus()?

In WinForms, to set focus to a specific control, I always seem to wind up calling Control.Select() and Control.Focus() to get it to work. What is the difference, and is this the correct approach?
10
votes
6answers
2k views

Use of class definitions inside a method in Java

public class TestClass { public static void main(String[] args) { TestClass t = new TestClass(); } private static void testMethod(){ abstract class TestMethod{ ...
9
votes
5answers
184 views

Is printing an empty string observable behavior in C++?

In C++03 Standard observable behavior (1.9/6) includes calls to library I/O functions. Now I have this code: printf( "" ); which is formally a call to a library I/O function but has no effect. Is ...
9
votes
4answers
243 views

Correct handling of return data

I have a question related to correct handling of returns of the DAO library I'm writing for one project. This library probably is going to be used by another people and I want to do it correctly. So I ...
9
votes
9answers
436 views

Are ORM's counterproductive to OO design?

In OOD, design of an object is said to be characterized by its identity and behavior. Having used ORM's in the past, the primary purpose, in my opinion, revolves around the ability to store/retrieve ...
8
votes
2answers
140 views

C++ - Overloading [] operators based on the side of assignment

I'm trying to write a dynamic array template in c++ I'm currently overloading the [] operators and I'd like to implement a different behavior based on which side of assignment they are used on. ...
8
votes
4answers
918 views

Why does left shift operation invoke Undefined Behaviour when the left side operand has negative value?

In C bitwise left shift operation invokes Undefined Behaviour when the left side operand has negative value. Relevant quote from ISO C99 (6.5.7/4) The result of E1 << E2 is E1 ...
8
votes
1answer
1k views

Client Web Browser Behavior When Handling 301 Redirect

The RFC seems to suggest that the client should permanently cache the response: http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html 10.3.2 301 Moved Permanently The requested resource has ...
7
votes
4answers
284 views

Behavior of an expression: Defined or Undefined?

I have the following code int m[4]={1,2,3,4}, *y; y=m; *y = f(y++); // Expression A My friend told me that Expression A has a well defined behavior but I am not sure whether he is correct. ...
7
votes
4answers
6k views

ListItems attributes in a DropDownList are lost on postback?

A coworker showed me this: He has a DropDownList and a button on a web page. Here's the code behind: protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { ...
6
votes
2answers
441 views

Xcode 4.1 behaviours - automate closing a tab?

I have my behaviours set up so that on successfully running a build, Xcode will open a custom debug window. I would like to then close this window when the run completes, however I cannot see an ...
6
votes
5answers
99 views

What is the difference between `>>> some_object` and `>>> print some_object` in the Python interpreter?

In the interpreter you can just write the name of an object e.g. a list a = [1, 2, 3, u"hellö"] at the interpreter prompt like this: >>> a [1, 2, 3, u'hell\xf6'] or you can do: ...
6
votes
1answer
182 views

Restrict Silverlight/WPF Behavior visibility

In Silverlight (and probably WPF), when I define a System.Windows.Interactivity.Behavior<T> for e.g. an ItemsControl, like public class SomeAwesomaticBehavior : Behavior<ItemsControl> { } ...
6
votes
4answers
305 views

Why does Enum.Parse create undefined entries?

class Program { static void Main(string[] args) { string value = "12345"; Type enumType = typeof(Fruits); Fruits fruit = Fruits.Apple; try { ...
6
votes
1answer
277 views

Erlang Supervisor Strategy For Restarting Connections to Downed Hosts

I'm using erlang as a bridge between services and I was wondering what advice people had for handling downed connections? I'm taking input from local files and piping them out to AMQP and it's ...
6
votes
2answers
9k views

jQuery textarea append newline behavior

I'm trying to append a strings which end in newlines to a textarea using jQuery. However, different newline tokens show different behavior in Firefox3.5 and IE8, and I can't seem to find a way to use ...
5
votes
1answer
125 views

Does any change in program state constitute observable behavior?

Consider the two following programs: //program one int main() { printf( "hello\n" ); } //program two int main() { srand( 0 ); if( rand() ) { printf( "hello\n" ); } else { ...
5
votes
4answers
141 views

How can subclasses share behavior when one already derives from a different base class?

I have two classes that implement ISomeBehavior. Now I want them to share functionality. Normally I would replace ISomeBehavior with an abstract class, like SomeBehaviorBase. The problem is that one ...
5
votes
1answer
541 views

Behaviors for Blend (Silverlight 4)

I'm wondering if anybody knows any good (free) behaviors for Blend/Silverlight 4 Specifically I'm looking for a behavior that I can drop on a TextBlock to make it scroll horizontally or a behavior ...
5
votes
4answers
689 views

What happens if you fire a background thread to execute right before ASP.NET completes its page processing?

what would happen if I spin off a thread to execute a long-running process right before the ASP.NET page lifecycle completes? Will the ASP.NET runtime kill the thread? Can this lead to undefined ...
4
votes
4answers
156 views

Compiler Trivia: What is consequence of this code

I was reviewing some code today and came across some code (accurately portrayed by this snippet)... public abstract class FlargBase{ public FlargBase(){ this.DoSomething(); } ...
4
votes
4answers
1k views

Remove/reset CSS behavior property

Is it possible to remove the IE-specific behavior CSS property via a more specific rule or the !important declaration? Example: .a-rule { behavior: url(/some.htc); } .a-rule.more-specific { ...
4
votes
2answers
91 views

Random behaviour of anchor tags

I have an anchor tag in my HTML that is used for a javascript event. The code looks something like this <a href="#" onclick="myScript()">run</a> However, when I click the script, the ...
4
votes
1answer
147 views

C# - foreach showing strange behavior / for working with no problem

Today I coded a function that uses two nested foreach loops. After seeing, that it did not work like expected, i debugged it. But I dont see an error, and dont think a simple error can cause the ...
4
votes
2answers
863 views

C++ Exceptions and Inheritance from std::exception

Given this sample code: #include <iostream> #include <stdexcept> class my_exception_t : std::exception { public: explicit my_exception_t() { } virtual const char* what() ...
4
votes
1answer
2k views

jQuery unexpected sortable behaviour

I'm working on a project where I can generate Word documents, one of the functionalities is to define a table of contents. I want my TOC to be a sortable jQuery list for sorting the chapters. I'm ...
4
votes
4answers
621 views

State vs. Behavior

Sometimes objects consist of pure data. Such objects have fields, accessors, and virtually no other methods. Sometimes objects consist of pure behavior. They have other objects representing their ...
4
votes
1answer
5k views

Programmatically and globally adding a custom WCF client endpoint behavior extension

I have the need to add a custom behavior extension to my WCF client endpoints. I tried doing this through configuration, but have been bitten by the often-mentioned bug where WFC configuration can't ...
4
votes
2answers
3k views

How can I disable Text Selection temporarily using JavaScript?

this is a bit of a specific question so I'll get right to the point. I'm working on a short and simple drag and drop routine for part of a web application, and although the dragging and dropping bit ...
4
votes
2answers
3k views

How do I use the TranslateBehavior in CakePHP?

There is no documentation on cakephp.org and I am unable to find one on google. Please link me some documentation or supply one!
3
votes
1answer
80 views

Is there a way to extend Plone Dexterity's INameFromTitle behavior?

The project I am working on uses Plone's awesome Dexterity plugin. A couple of my custom content types have very specific names that must be computed. The way I had originally accomplished this before ...
3
votes
2answers
176 views

How do you override the default value of a field in a dexterity behavior in Plone?

We have a requirement for a dexterity content type to have exclude from navigation behaviour but for the exclude_from_nav field's default value to be True. In the behaviour ...
3
votes
2answers
70 views

C: odd behaviour with nested loop and array

I have an array of int that is terminated with a '\0' created elsewhere in my code. I know it's null terminated because I've tested it. Say, for this example, the array is [7, 8, 9, 11, 12, '\0'] ...
3
votes
2answers
151 views

wpf behavior unit test

I am using an attached Behaviours to add drag and drop functionality to my code. So far, everything is working fine, but my problem is when I want to test my behaviour classes. For example, one of ...
3
votes
3answers
86 views

Is it undefined to initialize a class member in overloaded operator new?

Take a small example where, I am trying to find out if a variable is allocated on heap or not: struct A { bool isOnHeap; A () {} // not touching isOnHeap ~A () {} void* operator new (size_t ...
3
votes
1answer
60 views

Preventing the browser's autosuggest when using an autocompleter with jQuery

I'm using a small autocompleter function with jQuery. That works well. The problem is that when I'm typing a text in the input, my browser suggests me some of the previous texts I've typed before. ...
3
votes
2answers
177 views

strange behavior with 'IN' clause works

i found this site: here its very well described why it works and why not. but my question is a little different. select 'true' from dual where 'test' not in ('test2',''); why does this query not ...
3
votes
1answer
166 views

PHP strange behavior in function nl2br

I was dealing with refactoring of my small web app. all night. Today when I started testing, first bug what I found was problem with system PHP function nl2br(). On my localhost I have PHP version ...
3
votes
2answers
304 views

DataStateBehavior for Enum instead of bool? String?

Is there an easy way in WPF to bind VisualStates to enum values? Kinda like DataStateBehavior, but for an Enum?
3
votes
1answer
405 views

Best practices to build a highly configurable software product

I am working on a software product that can substantially change behavior based on the configuration & meta-data supplied. I would like to know best practices to architect / build a highly ...
3
votes
2answers
1k views

wpf Interactivity.Behavior<T> vs attached properties

I'm trying to find some differences between these approaches. Is there any situation where behaviors are used and the same functionality could not be done with attached properties?
3
votes
1answer
2k views

How can I debug a 'Default Membership Provider could not be found' error with WCF and a Custom ASP.NET membership provider?

This is problem for me with .Net 3.5 SP1 running on IIS7.5 64 bit (I tried forcing 32 bit but got the same result). I have a WCF service that I want to use authentication-services with. When I have ...
3
votes
10answers
398 views

Does 1 always equal '1' in SQL?

I am trying to determine that standard SQL behaviour for comparing a number to a character or string version of the same number. Does SELECT 1 = '1' (or the like) always return some sort of "truthy" ...
3
votes
1answer
363 views

When to use State vs Behavior Verification

In some cases its obvious when one or the other is warranted in other cases its not so clear. Take the following examples: A method which takes two inputs, performs a calculation and returns the ...
3
votes
1answer
288 views

Sometimes git will track all remote git branches as local branches without me asking to. What happened?

sometimes, git will spontaneously (during some, but not all, "pull" or "clone" operations) copy all of the remote branches of a repository into my local repository (and even set them all up to track ...
2
votes
2answers
108 views

CakePHP: Using multilevel Containable Behaviour

I've been quite some time trying to use the Containable Behavior in CakePHP but I can't get to make it work as I expected. My application is different, but to simplify I'll put this example. Let's ...

1 2 3 4 5 8