bash-2.03$ ./u_json.pl

Can't locate object method "encode" via package "JSON" at ./u_json.pl line 24.

bash-2.03$ ./v_hash_2_Jason.pl
Can't call method "encode_json" on unblessed reference at ./v_hash_2_Jason.pl line 32.

bash-2.03$ ./v_hash_2_Jason.pl
Operator or semicolon missing before %bless_function at ./v_hash_2_Jason.pl line 13.
Ambiguous use of % resolved as operator % at ./v_hash_2_Jason.pl line 13.
Bareword "encode_json" not allowed while "strict subs" in use at ./v_hash_2_Jason.pl line 13.
Bareword "bless_function" not allowed while "strict subs" in use at ./v_hash_2_Jason.pl line 13.
Execution of ./v_hash_2_Jason.pl aborted due to compilation errors.

bash-2.03$ ./x_2_json.pl
Can't locate object method "allow_nonref" via package "JSON" at ./x_2_json.pl line 24.
bash-2.03$ mv hash_2_Jason.pl v_hash_2_Jason.pl

随机推荐

  1. Start Developing Mac Apps -- App Design 应用程序设计

    App Design Apps do not exist on their own. They not only interact seamlessly with their environment, ...

  2. Codeforces - 9D - How many trees? - 简单dp - 组合数学

    https://codeforces.com/problemset/problem/9/D 一开始居然还想直接找公式的,想了想还是放弃了.原来这种结构是要动态规划. 状态是知道怎么设了,$t_{nh} ...

  3. 解决 CentOS 7 添加用户设置家目录出现 useradd cannot set SELinux context for home directory 问题

    问题描述 直接贴下代码吧~ [root@localhost ~]# useradd -d /tmp/heheda4 heheda4 useradd: cannot set SELinux contex ...

  4. 编译boost asio http/server 方法

    这段时间学习boost 的asio 编程,想编译asio自带的http/server的程序,无奈在网上根本找不到方法,只能自己摸索学习. 登陆boost asio 的example 目录,(我 boo ...

  5. NOIp 2014飞扬的小鸟【dp】By cellur925

    题目传送门 放在14年Day1T3的dp题目...应该比较看出来是dp算法吧,因为在本蒟蒻看来求最值的算法不清晰时就是dp了==. 状态还是比较好设计的,考虑到每个情况需要记录下的量:f[i][j]表 ...

  6. 【原创】《从0开始学Elasticsearch》—document的单/批量crud

    内容目录 1.新建文档2.查询文档3.修改文档4.删除文档 1.新建文档 1). 语法1,手动指定document 的id: PUT /index_name/type_name/id{    &quo ...

  7. 51Nod 1092 回文字符串

    最开始毫无头绪,然后参照了一位dalao的博客,思路是一个正序的字符串将其逆序,然后求最长公共子序列(LCS),emm也属于动态规划. #include <iostream> #inclu ...

  8. PostgreSQL - 转义字符

    转载至:postgresql字符转义 前言 在PostgreSQL 9之前的版本中,可以直接使用反斜杠\进行转义:比如:\b表示退格, \n表示换行, \t表示水平制表符,\r标示回车,\f表示换页. ...

  9. LightOj 1076 - Get the Containers (折半枚举好题)

    题目链接: http://www.lightoj.com/volume_showproblem.php?problem=1076 题目描述: 给出n个数,要求分成m段,问这m段中最大的总和,最小是多少 ...

  10. Codeforces Round #261 (Div. 2) E

    Description Pashmak's homework is a problem about graphs. Although he always tries to do his homewor ...