You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
-
So in essence we will create a different object for each simple type that we can expect. So I could create a Value object that has the restraint of being non-negative and then use that as the parameter instead.Aglystas– Aglystas2012-09-05 20:04:39 +00:00Commented Sep 5, 2012 at 20:04
-
1Wouldn't it be better to verify that you have the proper parameter types at compile time than at run time? That removes the validation from the function and there is no run-time overhead. I would take Jon's answer one step further and say that you are longing for a type-safe language (e.g. Java). An object-oriented type-safe language lets you define your own types so that you can do Jon's example of Area area(Length w, Length height). Type-safety and OO are wonderful things.GlenPeterson– GlenPeterson2012-09-05 20:41:44 +00:00Commented Sep 5, 2012 at 20:41
-
I agree with Glen. Try Java. It isn't bad, really. It may be quite a change from PHP, but better in almost every way.Zan Lynx– Zan Lynx2012-09-05 22:06:34 +00:00Commented Sep 5, 2012 at 22:06
-
@GlenPeterson: As a Haskeller, I do prefer static typing. The OP asked about PHP, so I answered from that perspective. PHP has object-oriented features and allows user-defined types. Java is not a credible alternative in this case.Jon Purdy– Jon Purdy2012-09-05 22:06:35 +00:00Commented Sep 5, 2012 at 22:06
-
What do you mean when you say, "Java is not a credible alternative in this case?" Do you mean that Java has no good HTML front-end (aka JSP/JSF suck)? Yeah, that's an issue. Also, what is it with this list and Haskell. I hadn't even heard of Haskell until I started hanging out here, and now it seems everyone is into it. It seems a little theoretical to me.GlenPeterson– GlenPeterson2012-09-05 22:29:55 +00:00Commented Sep 5, 2012 at 22:29
|
Show 1 more comment
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
-
create code fences with backticks ` or tildes ~
```
like so
``` -
add language identifier to highlight code
```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible)
<https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-php