Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Can methods with parameters be made optional? #132

Open
sxiaoming2007 opened this issue Dec 24, 2019 · 0 comments
Open

Can methods with parameters be made optional? #132

sxiaoming2007 opened this issue Dec 24, 2019 · 0 comments

Comments

@sxiaoming2007
Copy link

Different languages have different expression styles,like this:
English:
If the last price rises to or above $name1,an order to buy $name3 at a price of $name2 will be placed
Chinese:
若价格高于${name1}时,则依据${name2}下单,购买${name3}
The name1 name2 name3 in different order,generate method is
English:
(String name1, String name3, String name2)
Chinese:
(String name1, String name2, String name3)
Inconvenient to pass values,Whether it can be modified to ({String name1,String name3,String name2}),so it Can be called like this,(name1:'hello',name2:'hello',name3:'hello')

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant